/* =====================
   SPECTRUM PATHWAYS CSS
   Light Corporate Theme
   Navy + Orange Brand
   ===================== */

:root {
  --bg: #ffffff;
  --bg2: #f5f7fa;
  --bg3: #eef1f6;
  --navy: #2b2d7e;
  --navy-dark: #1e2060;
  --navy-light: #3d3fa0;
  --orange: #f26522;
  --orange-light: #ff7a35;
  --text: #1a1d2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-navy: 0 8px 32px rgba(43,45,126,0.2);
  --gradient: linear-gradient(135deg, #2b2d7e, #f26522);
  --gradient-navy: linear-gradient(135deg, #2b2d7e, #3d3fa0);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; color: var(--text); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 14px 32px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: 15px; transition: all 0.3s; border: none; cursor: pointer; box-shadow: var(--shadow-navy); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(43,45,126,0.3); }
.btn-orange { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 14px 32px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: 15px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); padding: 14px 28px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: 15px; border: 2px solid var(--navy); transition: all 0.3s; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-large { padding: 18px 48px; font-size: 17px; }

/* SECTION TAGS */
.section-tag { display: inline-block; background: rgba(43,45,126,0.08); border: 1px solid rgba(43,45,126,0.15); color: var(--navy); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 56px; line-height: 1.1; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: all 0.3s; }
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 42px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--navy); }
.logo-tagline { font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em; }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); font-weight: 600; }
.btn-nav { background: var(--orange); color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; font-family: var(--font-head); white-space: nowrap; transition: all 0.3s; flex-shrink: 0; }
.btn-nav:hover { background: var(--orange-light); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; gap: 16px; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu a { font-size: 15px; color: var(--text-muted); }
.mobile-menu .btn-nav { text-align: center; }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) { .nav-links, .btn-nav { display: none; } .hamburger { display: block; } }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 120px 80px 80px; max-width: 1400px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(242,101,34,0.08); border: 1px solid rgba(242,101,34,0.2); color: var(--orange); padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 28px; animation: fadeUp 0.6s ease forwards; }
.hero-title { font-size: clamp(40px, 4.5vw, 64px); font-weight: 800; line-height: 1.05; margin-bottom: 24px; animation: fadeUp 0.7s ease 0.1s both; }
.hero-title .underline { color: var(--navy); position: relative; display: inline-block; }
.hero-title .underline::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); border-radius: 2px; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 40px; line-height: 1.7; animation: fadeUp 0.7s ease 0.2s both; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; gap: 32px; padding-top: 32px; border-top: 1px solid var(--border); animation: fadeUp 0.7s ease 0.4s both; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 40px; background: var(--border-dark); }
.hero-visual { animation: fadeUp 0.8s ease 0.3s both; position: relative; }

/* Hero card */
.hero-card-main { background: var(--navy); border-radius: 24px; padding: 36px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.hero-card-main::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(242,101,34,0.15); border-radius: 50%; }
.hcm-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 600; }
.delivery-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; position: relative; z-index: 1; }
.dc-side { text-align: center; }
.dc-time { font-family: var(--font-head); font-size: 36px; font-weight: 800; margin-bottom: 6px; }
.dc-time.slow { color: rgba(255,255,255,0.3); text-decoration: line-through; }
.dc-time.fast { color: var(--orange); }
.dc-label { font-size: 12px; color: rgba(255,255,255,0.55); }
.dc-vs { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); padding: 8px 12px; border-radius: 8px; text-align: center; }
.hcm-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.hcm-steps { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.hcm-step { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 11px 16px; }
.hcm-step-icon { font-size: 16px; width: 28px; text-align: center; flex-shrink: 0; }
.hcm-step-text { font-size: 13px; color: rgba(255,255,255,0.8); flex: 1; }
.hcm-step-check { color: #4ade80; font-size: 14px; font-weight: 700; }

.floating-card { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); animation: float 3s ease-in-out infinite; }
.fc1 { bottom: -20px; left: -28px; animation-delay: 0s; }
.fc2 { top: -16px; right: -20px; animation-delay: 1.5s; }
.fc-icon { font-size: 20px; }
.fc-text { font-size: 12px; line-height: 1.4; }
.fc-text strong { display: block; font-family: var(--font-head); color: var(--text); font-size: 13px; }
.fc-text span { color: var(--text-muted); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; } .hero-sub { margin: 0 auto 40px; } .hero-cta { justify-content: center; } .hero-stats { justify-content: center; } .hero-visual { display: none; } }

/* TRUSTED */
.trusted { padding: 40px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trusted-label { text-align: center; font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 28px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.logo-item { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-light); transition: color 0.2s; }
.logo-item:hover { color: var(--navy); }

/* PROBLEM */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.problem-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(43,45,126,0.15); }
.pc-icon { font-size: 36px; margin-bottom: 20px; }
.problem-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.problem-card p { color: var(--text-muted); font-size: 15px; }
.solution-banner { background: var(--navy); border-radius: var(--radius); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.sb-left h3 { font-size: 26px; margin-bottom: 12px; color: #fff; }
.sb-left p { color: rgba(255,255,255,0.7); max-width: 540px; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } .solution-banner { flex-direction: column; text-align: center; } }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: all 0.3s; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--orange)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.sc-featured { border-top: 3px solid var(--navy); }
.sc-featured::after { transform: scaleX(1); }
.sc-num { font-size: 11px; color: var(--orange); font-weight: 700; margin-bottom: 16px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-head); }
.sc-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--navy); }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.sc-link { font-size: 14px; color: var(--orange); font-weight: 600; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* PROCESS FLOW */
.dark-section { background: var(--bg2); }
.process-flow { display: flex; align-items: flex-start; gap: 0; position: relative; margin-bottom: 80px; justify-content: space-between; }
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -16px; top: 28px; font-size: 24px; color: var(--orange); font-weight: 700; z-index: 2; }
.ps-bubble { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; box-shadow: var(--shadow-navy); transition: all 0.3s; position: relative; }
.ps-bubble .ps-num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.process-step:hover .ps-bubble { transform: scale(1.1) translateY(-4px); box-shadow: 0 16px 40px rgba(43,45,126,0.3); }
.process-step h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* Comparison */
.comparison { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 24px; align-items: center; }
.comp-vs { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--text-light); text-align: center; background: var(--border); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.comp-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.comp-col.with { border-color: var(--navy); border-width: 2px; }
.comp-label { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.comp-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.comp-item { font-size: 14px; padding: 10px 14px; border-radius: 6px; display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.comp-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.comp-item.bad { background: rgba(239,68,68,0.05); }
.comp-item.bad::before { background: #ef4444; }
.comp-item.good { background: rgba(43,45,126,0.05); color: var(--text); }
.comp-item.good::before { background: var(--navy); }
.comp-time { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-align: center; padding-top: 16px; border-top: 1px solid var(--border); color: var(--text-muted); }
.with .comp-time { color: var(--navy); }
@media (max-width: 900px) { .process-flow { flex-direction: column; gap: 32px; } .process-step::after { display: none; } .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; } .ps-bubble { flex-shrink: 0; } .comparison { grid-template-columns: 1fr; } .comp-vs { display: none; } }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.t-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.t-author strong { display: block; font-size: 14px; color: var(--text); }
.t-author span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-box { background: var(--navy); border-radius: 24px; padding: 80px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: rgba(242,101,34,0.15); border-radius: 50%; }
.cta-box::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; background: rgba(255,255,255,0.03); border-radius: 50%; }
.cta-box h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-box .btn-orange { position: relative; z-index: 1; }

/* FOOTER */
.footer { background: #111827; padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 80px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fl-col h4 { font-family: var(--font-head); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.fl-col a { display: block; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
.fl-col a:hover { color: var(--orange); }
.footer-offices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.office-item h5 { font-family: var(--font-head); font-size: 11px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.office-item p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } .footer-links { grid-template-columns: 1fr 1fr; } .footer-offices { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* PAGE HERO */
.page-hero { padding: 140px 0 80px; text-align: center; background: var(--bg2); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(43,45,126,0.06) 0%, transparent 70%); }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; position: relative; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; position: relative; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img { background: linear-gradient(135deg, rgba(43,45,126,0.06), rgba(242,101,34,0.04)); border: 1px solid var(--border); border-radius: var(--radius); height: 420px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-content h2 { font-size: 36px; margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card .vc-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.value-card p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* SERVICES PAGE */
.services-detail { display: flex; flex-direction: column; gap: 80px; }
.service-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-visual { background: linear-gradient(135deg, rgba(43,45,126,0.06), rgba(242,101,34,0.04)); border: 1px solid var(--border); border-radius: var(--radius); height: 340px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.service-detail-content h2 { font-size: 34px; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.feature-list li::before { content: '✓'; color: #fff; font-weight: 700; background: var(--navy); width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
@media (max-width: 768px) { .service-detail-row { grid-template-columns: 1fr; } .service-detail-row.reverse { direction: ltr; } }

/* INDUSTRIES */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(43,45,126,0.2); }
.ind-icon { font-size: 44px; margin-bottom: 20px; }
.industry-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.industry-card p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }

/* CSR */
.csr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 80px; }
.csr-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.csr-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.csr-icon { font-size: 40px; margin-bottom: 20px; }
.csr-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.csr-card p { color: var(--text-muted); font-size: 15px; }
@media (max-width: 768px) { .csr-grid { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: 36px; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.cd-icon { font-size: 18px; width: 44px; height: 44px; background: rgba(43,45,126,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-text strong { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.cd-text span, .cd-text a { font-size: 14px; color: var(--text); }
.cd-text a:hover { color: var(--navy); }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); background: #fff; }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
