/* =====================================================
   GLOBAL APEX — Professional Strategy Consulting
   Design System: Bain-Inspired Premium Consulting
   Version: 2.0 | contact@globalapex.net
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #0a1f3d;
  --primary-dark: #061429;
  --primary-light: #1a3355;
  --accent: #c8102e;
  --accent-hover: #a00d24;
  --accent-light: rgba(200,16,46,0.08);
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-py: 100px;
  --container-max: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(10,31,61,0.06);
  --shadow-md: 0 8px 30px rgba(10,31,61,0.10);
  --shadow-lg: 0 20px 60px rgba(10,31,61,0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--text-dark); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { color: var(--text-medium); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.2rem; line-height: 1.8; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 30px; }
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--primary); }
.section--dark h2, .section--dark h3, .section--dark h4, .section--dark p { color: rgba(255,255,255,0.88); }
.section--dark .section-label { color: var(--gold); }
.section--gray { background: var(--off-white); }
.section--red { background: var(--accent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.1rem; }
.divider { width: 50px; height: 3px; background: var(--accent); margin: 20px 0; }
.divider--center { margin: 20px auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; border-radius: var(--radius); transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,16,46,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; padding: 0; }
.navbar.transparent { background: transparent; }
.navbar.solid { background: var(--primary-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: var(--container-max); margin: 0 auto; padding: 0 30px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.nav-logo span.accent { color: var(--accent); }
.nav-logo .logo-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a { color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius); transition: all var(--transition); letter-spacing: 0.02em; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 22px !important; margin-left: 8px; }
.nav-cta:hover { background: var(--accent-hover) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--primary-dark); padding: 20px 30px 30px; z-index: 999; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-primary { display: inline-flex; margin-top: 16px; border-bottom: none; padding: 12px 28px; }

/* ===== HERO SECTIONS ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--primary-dark); }
.hero--inner { min-height: 55vh; padding-top: 120px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,20,41,0.92) 0%, rgba(10,31,61,0.80) 60%, rgba(10,31,61,0.65) 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.4); color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 2px; margin-bottom: 28px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 24px; font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 580px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 70px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
.page-hero { padding: 140px 0 80px; background: var(--primary); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.85); font-size: 0.85rem; }

/* ===== IMPACT STATS SECTION ===== */
.stats-section { background: var(--primary); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-number span { color: var(--accent); }
.stat-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); border-top: 4px solid var(--accent); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--primary)); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 58px; height: 58px; background: var(--accent-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.service-tag { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; display: block; }
.service-card p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--accent); transition: gap var(--transition); }
.read-more:hover { gap: 10px; color: var(--accent-hover); }
.read-more svg { width: 16px; height: 16px; }

/* ===== WHY GLOBAL APEX ===== */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 50px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 28px; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.why-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(200,16,46,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.why-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ===== CASE STUDY CARDS ===== */
.case-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); }
.case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.case-card-img { height: 220px; overflow: hidden; position: relative; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-industry { position: absolute; top: 16px; left: 16px; background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }
.case-card-body { padding: 30px; }
.case-card-body h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.4; }
.case-card-body p { font-size: 0.92rem; margin-bottom: 20px; }
.case-result { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-medium); background: var(--off-white); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 20px; border-left: 3px solid var(--accent); }
.case-result svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }

/* ===== INSIGHTS CARDS ===== */
.insight-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.insight-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.insight-card-img { height: 200px; overflow: hidden; background: var(--light-gray); }
.insight-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insight-card:hover .insight-card-img img { transform: scale(1.05); }
.insight-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.insight-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.insight-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.insight-date { font-size: 0.78rem; color: var(--text-light); }
.insight-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }
.insight-card-body h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; flex: 1; }
.insight-card-body p { font-size: 0.9rem; margin-bottom: 20px; }

/* ===== CTA BANNER ===== */
.cta-section { background: var(--accent); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 550px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: var(--white); color: var(--accent); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--off-white); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ===== CONTACT FORM ===== */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.95rem; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group label span { color: var(--accent); }
.form-control { width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); transition: all var(--transition); outline: none; }
.form-control:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-honeypot { display: none !important; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; font-weight: 600; letter-spacing: 0.03em; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success svg { width: 64px; height: 64px; stroke: #22c55e; margin: 0 auto 20px; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text-medium); }
.form-error-msg { background: #fef2f2; color: var(--accent); border: 1px solid rgba(200,16,46,0.2); border-radius: var(--radius); padding: 12px 16px; font-size: 0.88rem; margin-bottom: 20px; display: none; }
.contact-info-panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.contact-info-panel > p { margin-bottom: 40px; }
.contact-info-block { margin-bottom: 36px; }
.contact-info-block h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.contact-info-item svg { width: 18px; height: 18px; stroke: var(--text-light); flex-shrink: 0; margin-top: 3px; }
.contact-info-item span { font-size: 0.95rem; color: var(--text-medium); }
.contact-info-item a { color: var(--text-medium); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 42px; height: 42px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; transition: all var(--transition); border: 1px solid var(--border); }
.social-link:hover { background: var(--accent); border-color: var(--accent); }
.social-link:hover svg { stroke: var(--white); }
.social-link svg { width: 18px; height: 18px; stroke: var(--text-medium); }

/* ===== FOOTER ===== */
.footer { background: #060e1b; color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 20px; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-nav h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 2px; background: linear-gradient(90deg, var(--accent), var(--primary)); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 0 auto 24px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.step-item h4 { font-size: 1rem; margin-bottom: 12px; }
.step-item p { font-size: 0.88rem; }

/* ===== TEAM/ABOUT ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.team-card { text-align: center; }
.team-img { width: 100%; height: 260px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; background: var(--light-gray); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.value-card { padding: 36px 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1.15rem; margin-bottom: 12px; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.industry-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); transition: all var(--transition); }
.industry-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.industry-item svg { width: 24px; height: 24px; stroke: var(--accent); flex-shrink: 0; }
.industry-item span { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; background: none; border: none; font-family: var(--font-body); }
.faq-question svg { width: 20px; height: 20px; stroke: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 22px; font-size: 0.95rem; color: var(--text-medium); line-height: 1.8; }

/* ===== DOWNLOAD CTA ===== */
.download-box { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: var(--radius-lg); padding: 50px; display: flex; gap: 40px; align-items: center; }
.download-icon { width: 80px; height: 80px; min-width: 80px; background: rgba(200,16,46,0.15); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.download-icon svg { width: 40px; height: 40px; stroke: var(--accent); }
.download-text h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.download-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 20px; }

/* ===== UTILITIES ===== */
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.hidden { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .grid-4, .stats-grid, .process-steps, .footer-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .grid-3, .values-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .grid-2, .services-grid, .grid-3, .why-grid, .values-grid, .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-stats { gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 20px; }
  .download-box { flex-direction: column; padding: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header--center { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2.2rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .stat-number { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 30px; }
}
