/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Variables ────────────────────────────────── */
:root {
  --navy: #1a3a5c;
  --navy-dark: #0d1f33;
  --gold: #c8a96e;
  --gold-light: #d4ba82;
  --off-white: #f8f6f2;
  --gray-text: #6b7280;
  --border: #e5e7eb;
}

/* ── Layout ───────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Navbar ───────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s;
}
.navbar.scrolled, .navbar.solid { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { color: #fff; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.2em; }
.logo-sub { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; padding: 0.6rem 1.25rem; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 0.25rem; }
.hamburger svg { display: block; }
.mobile-menu { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0 1.5rem; }
.mobile-menu a { display: block; padding: 0.75rem 2rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta { margin: 0.5rem 2rem 0; display: block; text-align: center; background: var(--gold); color: var(--navy); font-weight: 700; padding: 0.75rem; border-radius: 2px; }

/* ── Buttons ──────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.03em; padding: 0.75rem 1.5rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { border: 1px solid var(--border); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }
.btn-text { color: var(--navy); font-weight: 600; font-size: 0.875rem; border-bottom: 1px solid rgba(26,58,92,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.btn-text:hover { border-color: var(--navy); }
.btn-text-gold { color: var(--gold); font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 0.2s; }
.btn-text-gold:hover { gap: 0.5rem; }

/* ── Section Labels ───────────────────────────── */
.gold-rule { width: 1.5rem; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.section-label { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-title-white { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.2; }

/* ── Page Hero ────────────────────────────────── */
.page-hero { background: var(--navy); padding: 8rem 0 4rem; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 640px; line-height: 1.7; }

/* ── Footer ───────────────────────────────────── */
footer { background: var(--navy-dark); color: #fff; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 3rem; }
.footer-brand .logo-name { font-size: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 1rem; line-height: 1.7; }
.footer-brand .linkedin { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.8rem; margin-top: 1.25rem; transition: color 0.2s; }
.footer-brand .linkedin:hover { color: var(--gold-light); }
.footer-col h4 { color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.8rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-col .office-item { display: flex; gap: 0.5rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5; }
.footer-col .office-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-col .office-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col .office-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 1.25rem 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ────────────────────────────────────────────── */
/*  HOME PAGE                                     */
/* ────────────────────────────────────────────── */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 100vh; display: flex; align-items: flex-end;
  padding-bottom: 4rem; padding-top: 9rem;
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 1.5rem; max-width: 640px; }
.hero h1 span { color: var(--gold); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; max-width: 900px; flex-wrap: wrap; }
.hero-desc { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 440px; }
.hero-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* About section */
.about-section { padding: 3.5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 3rem; align-items: start; }
.about-lead { font-size: 1.25rem; font-weight: 300; color: var(--navy); line-height: 1.7; margin-bottom: 1.25rem; }
.about-lead strong { font-weight: 700; }
.about-body { color: var(--gray-text); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; }
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.highlight-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: #4b5563; }
.highlight-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* Steps */
.steps-section { border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { padding: 2rem 0; }
.step:not(:first-child) { padding-left: 2rem; border-left: 1px solid var(--border); }
.step:not(:last-child) { padding-right: 2rem; }
.step-num { color: var(--gold); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 1rem; flex: 1; }

/* Services */
.services-section { padding: 3.5rem 0; background: var(--off-white); }
.services-header { display: grid; grid-template-columns: 1fr 3fr; gap: 3rem; margin-bottom: 2rem; align-items: end; }
.services-header p { color: var(--gray-text); font-size: 0.875rem; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d1d5db; }
.service-card { background: var(--off-white); padding: 1.75rem; transition: background 0.2s; }
.service-card:hover { background: #fff; }
.service-num { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.7; }
.services-cta { margin-top: 1.5rem; }

/* Industries */
.industries-section { padding: 3.5rem 0; background: var(--navy); }
.industries-header { margin-bottom: 2rem; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); }
.industry-card { background: var(--navy); padding: 1.75rem; transition: background 0.2s; }
.industry-card:hover { background: #1e4168; }
.industry-card .rule { width: 1.25rem; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.industry-card h3 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* CTA */
.cta-section { padding: 3.5rem 0; border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: center; }
.cta-grid h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 0.75rem; }
.cta-grid p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.7; }
.cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }

/* ────────────────────────────────────────────── */
/*  ABOUT PAGE                                    */
/* ────────────────────────────────────────────── */
.story-section { padding: 3.5rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.story-text p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; }
.story-box { background: var(--off-white); border-radius: 4px; padding: 2rem; }
.story-box h4 { color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.story-box ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: #374151; margin-bottom: 0.75rem; }
.story-box ul li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; }
.story-box .note { border-top: 1px solid #d1d5db; margin-top: 1.25rem; padding-top: 1.25rem; font-size: 0.8rem; color: var(--gray-text); line-height: 1.7; }

.team-section { padding: 3.5rem 0; background: var(--off-white); }
.team-header { text-align: center; margin-bottom: 2.5rem; }
.team-header .gold-rule { margin: 0 auto 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2rem; text-align: center; }
.team-avatar { width: 4rem; height: 4rem; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-card h3 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card .team-role { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }

.approach-section { padding: 3.5rem 0; }
.approach-header { text-align: center; margin-bottom: 2.5rem; }
.approach-header p { color: var(--gray-text); max-width: 540px; margin: 0.75rem auto 0; font-size: 0.9rem; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.approach-item { display: flex; gap: 1.25rem; }
.approach-num { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(200,169,110,0.15); color: var(--gold); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; }
.approach-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; }
.approach-item p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; }
.approach-quote { background: var(--navy); border-radius: 4px; padding: 2.5rem; text-align: center; }
.approach-quote p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; max-width: 700px; margin: 0 auto 1.5rem; }

/* ────────────────────────────────────────────── */
/*  SERVICES PAGE                                 */
/* ────────────────────────────────────────────── */
.services-page { padding: 3.5rem 0; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; margin-bottom: 0; }
.service-block.reverse .service-info { order: 2; }
.service-block.reverse .service-items { order: 1; }
.service-info .service-num { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.service-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.service-info .tagline { color: var(--gold); font-style: italic; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.service-info p { color: var(--gray-text); font-size: 0.875rem; line-height: 1.75; }
.service-items-box { background: var(--off-white); border-radius: 4px; padding: 1.75rem; }
.service-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.service-items-grid li { display: flex; align-items: flex-start; gap: 0.4rem; font-size: 0.8rem; color: #374151; line-height: 1.5; }
.service-items-grid li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 5px; }
.services-cta-section { padding: 3rem 0; background: var(--navy); text-align: center; }
.services-cta-section h2 { font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.services-cta-section p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ────────────────────────────────────────────── */
/*  INSIGHTS PAGE                                 */
/* ────────────────────────────────────────────── */
.insights-featured { padding: 3rem 0; background: var(--off-white); }
.featured-card { background: #fff; border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.featured-left { background: var(--navy); padding: 2.5rem; }
.featured-left .category { display: inline-block; background: rgba(200,169,110,0.2); color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 1.25rem; }
.featured-left h2 { color: #fff; font-size: 1.35rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.75rem; }
.featured-left p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.article-meta { color: rgba(255,255,255,0.35); font-size: 0.75rem; margin-bottom: 1.5rem; }
.featured-right { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-right .label { color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem; }
.featured-right p { color: var(--gray-text); font-size: 0.875rem; line-height: 1.8; margin-bottom: 1rem; }
.featured-right .quote { border-top: 1px solid var(--border); padding-top: 1rem; font-style: italic; font-size: 0.825rem; color: #9ca3af; }

.articles-section { padding: 3rem 0; }
.articles-section h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.article-card-top { height: 3px; background: var(--gold); }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.category-badge { font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px; }
.cat-mining { background: #fef3c7; color: #92400e; }
.cat-legal { background: #dbeafe; color: #1e40af; }
.cat-market { background: #d1fae5; color: #065f46; }
.cat-affairs { background: #ede9fe; color: #5b21b6; }
.article-date { font-size: 0.72rem; color: #9ca3af; }
.article-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 0.5rem; transition: color 0.2s; }
.article-card:hover h3 { color: var(--gold); }
.article-card p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.article-link { color: var(--gold); font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 0.2s; }
.article-link:hover { gap: 0.5rem; }

.subscribe-section { padding: 3rem 0; background: var(--off-white); text-align: center; }
.subscribe-section .section-label { display: block; margin-bottom: 0.5rem; }
.subscribe-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.subscribe-section p { color: var(--gray-text); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ────────────────────────────────────────────── */
/*  CONTACT PAGE                                  */
/* ────────────────────────────────────────────── */
.contact-section { padding: 3.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-form .sub { color: var(--gray-text); font-size: 0.825rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #6b7280; margin-bottom: 0.375rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.875rem; color: #111;
  transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}
.field textarea { resize: none; }
.submit-btn { width: 100%; padding: 0.85rem; background: var(--navy); color: #fff; font-weight: 700; font-size: 0.875rem; border: none; border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: background 0.2s; }
.submit-btn:hover { background: var(--navy-dark); }
.success-box { background: var(--off-white); border: 1px solid rgba(200,169,110,0.3); border-radius: 4px; padding: 2.5rem; text-align: center; display: none; }
.success-box h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-box p { color: var(--gray-text); font-size: 0.85rem; }
.office-box { background: var(--off-white); border-radius: 4px; padding: 1.5rem; margin-bottom: 1rem; }
.office-box .office-label { color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.25rem; }
.office-box h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.office-box .office-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.825rem; color: var(--gray-text); margin-bottom: 0.5rem; line-height: 1.5; }
.office-box .office-item svg { flex-shrink: 0; color: var(--gold); }
.office-box .office-item a { color: var(--gray-text); transition: color 0.2s; }
.office-box .office-item a:hover { color: var(--navy); }
.hours-box { background: var(--navy); border-radius: 4px; padding: 1.5rem; color: #fff; }
.hours-box h4 { color: var(--gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.hours-row span:last-child { color: #fff; }
.linkedin-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-top: 1rem; transition: color 0.2s; }
.linkedin-link:hover { color: var(--gold-light); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .services-header, .cta-grid, .story-grid, .approach-grid,
  .service-block, .featured-card, .contact-grid { grid-template-columns: 1fr; }
  .service-block.reverse .service-info, .service-block.reverse .service-items { order: unset; }
  .steps-grid { grid-template-columns: 1fr; }
  .step:not(:first-child) { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2rem; }
  .step:not(:last-child) { padding-right: 0; }
  .cta-btns { align-items: flex-start; }
  .industries-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid, .services-grid { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .service-items-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}
