/* ============================================================
   OPTIMUMFUSION — Master Stylesheet
   Combined CSS from all 7 pages (index, about, services,
   our-work, contact, team, cedric)
   ============================================================ */

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

:root {
  --bg-dark: #0B1120;
  --bg-light: #F8F6F2;
  --bg-section: #0d1628;
  --accent: #2563EB;
  --accent-hover: #1d4ed8;
  --text-dark: #0F172A;
  --text-light: #E5E7EB;
  --text-muted: #94a3b8;
  --text-body: #cbd5e1;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
  --font-head: 'Poppins', sans-serif;
  --font-sub: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg-dark); color: var(--text-light); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(11,17,32,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: var(--font-sub); font-size: 0.88rem; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; letter-spacing: 0.3px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--accent); color: var(--white); font-family: var(--font-sub); font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.4rem; border-radius: 6px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-hover); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: 1.5rem 5%; flex-direction: column; gap: 1.2rem; z-index: 99; }
.mobile-menu a { font-family: var(--font-sub); font-size: 1rem; color: var(--text-muted); text-decoration: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .nav-cta { align-self: flex-start; margin-top: 0.5rem; color: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a.sub { padding-left: 1.5rem; font-size: 0.9rem; color: var(--accent); }

/* ── DROPDOWN NAV ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-links .has-dropdown > a::after { content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; display: inline-block; }
.nav-links .has-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%); background: #0d1628; border: 1px solid var(--border); border-radius: 12px; padding: 8px; min-width: 200px; opacity: 0; visibility: hidden; transition: all 0.2s; box-shadow: 0 16px 40px rgba(0,0,0,0.4); z-index: 200; }
.dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: #0d1628; border-left: 1px solid var(--border); border-top: 1px solid var(--border); rotate: 45deg; }
.nav-links .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; top: calc(100% + 8px); }
.dropdown a { display: flex; align-items: center; gap: 8px; font-family: var(--font-sub); font-size: 0.83rem; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 10px 14px; border-radius: 8px; transition: all 0.15s; white-space: nowrap; }
.dropdown a:hover { background: rgba(37,99,235,0.1); color: var(--white); }
.dropdown a.active { background: rgba(37,99,235,0.15); color: var(--accent); }

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-family: var(--font-sub); font-size: 0.78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 1.2rem; letter-spacing: -0.5px; }
.section-title-dark { color: var(--text-dark); }
.section-desc { font-size: 1.05rem; line-height: 1.75; color: var(--text-body); max-width: 600px; }
.section-desc-dark { color: #475569; }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: var(--white); font-family: var(--font-sub); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.btn-primary::after { content: ' →'; opacity: 0; display: inline-block; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.btn-primary:hover::after { opacity: 1; transform: translateX(0); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); font-family: var(--font-sub); font-weight: 500; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); font-family: var(--font-sub); font-weight: 500; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; transition: all 0.25s; }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-white { background: var(--white); color: var(--accent); font-family: var(--font-sub); font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.btn-white:hover { background: var(--bg-light); transform: translateY(-1px); }
.btn-white::after { content: ' →'; opacity: 0; display: inline-block; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.btn-white:hover::after { opacity: 1; transform: translateX(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 140px 5% 80px; background: var(--bg-dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); pointer-events: none; }
.page-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sub); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25); border-radius: 30px;
  padding: 0.4rem 1rem 0.4rem 0.7rem; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.page-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(37,99,235,0.8); animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.1rem; line-height: 1.75; color: var(--text-body); max-width: 580px; }
.breadcrumb a { color: var(--accent); text-decoration: none; }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 5% 80px; background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-eyebrow { font-family: var(--font-sub); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-title .highlight { color: var(--accent); }
.hero-desc { font-size: 1.1rem; line-height: 1.75; color: var(--text-body); margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 420px; overflow: hidden; }
.hero-card { position: absolute; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; backdrop-filter: blur(8px); }
.hero-card-main { width: 100%; top: 0; left: 0; }
.hero-card-float { width: 56%; bottom: 0; right: 0; background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.3); }
.service-pill { display: inline-block; font-family: var(--font-sub); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); border-radius: 20px; padding: 0.3rem 0.8rem; margin-bottom: 1rem; }
.hero-card-main h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-body); display: flex; align-items: center; gap: 0.6rem; }
.service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-card-float h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.hero-card-float p { font-size: 0.82rem; color: var(--text-body); }
.stat-big { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--accent); }

/* ── LOGOS / TRUST ── */
.logos-section { padding: 50px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.logos-label { font-family: var(--font-sub); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.logo-item { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.2); letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.logo-item:hover { color: rgba(255,255,255,0.5); }

/* ── SERVICES (home) ── */
.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid rgba(0,0,0,0.07); transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--accent); font-size: 1.35rem; flex-shrink: 0; }
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.9rem; line-height: 1.65; color: #475569; }
.services-cta { text-align: center; margin-top: 3rem; }

/* ── STATS ── */
.stats-section { background: var(--accent); padding: 70px 5%; }
.stats-bar { background: var(--accent); padding: 60px 5%; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.stat-item p { font-family: var(--font-sub); font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); }

/* ── PROCESS (home) ── */
.process-section { background: var(--bg-dark); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 1rem; }
.process-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--accent); background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); border-radius: 8px; padding: 0.4rem 0.7rem; flex-shrink: 0; letter-spacing: 1px; }
.step-content h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.9rem; line-height: 1.65; color: var(--text-body); }
.process-visual { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.process-visual-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { font-family: var(--font-sub); font-size: 0.78rem; font-weight: 500; color: var(--text-body); background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 20px; padding: 0.35rem 0.9rem; }
.tag.accent { color: var(--accent); background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid rgba(0,0,0,0.07); }
.quote-mark { font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; color: var(--accent); margin-bottom: 0.5rem; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; color: #475569; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #1d4ed8); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.author-info strong { display: block; font-family: var(--font-sub); font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.author-info span { font-size: 0.8rem; color: #94a3b8; }

/* ── CTA SECTION ── */
.cta-section { background: var(--bg-dark); text-align: center; padding: 120px 5%; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-section .section-title { max-width: 700px; margin: 0 auto 1.5rem; }
.cta-section .section-desc { margin: 0 auto 2.5rem; text-align: center; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px; }
.cta-section p { font-size: 1.05rem; color: var(--text-body); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ── FOOTER ── */
footer { background: #060c18; border-top: 1px solid var(--border); padding: 70px 5% 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); max-width: 260px; margin-top: 1rem; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn { width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 1rem; transition: all 0.2s; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-family: var(--font-sub); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ── ABOUT PAGE ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid rgba(0,0,0,0.07); transition: all 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.3rem; margin-bottom: 1.2rem; }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; line-height: 1.65; color: #475569; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: rgba(37,99,235,0.15); line-height: 1; flex-shrink: 0; width: 40px; }
.why-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.why-item p { font-size: 0.9rem; line-height: 1.65; color: #475569; }
.why-visual { background: var(--bg-dark); border-radius: 24px; padding: 3rem; }
.why-visual h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-sub { font-family: var(--font-sub); font-size: 0.83rem; color: var(--accent); margin-bottom: 2rem; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.stat-row:last-child { border-bottom: none; }
.stat-row .lbl { font-size: 0.9rem; color: var(--text-body); }
.stat-row .val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.team-teaser { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); padding: 80px 5%; }
.team-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.team-teaser-inner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; }
.team-teaser-inner p { font-size: 0.97rem; color: var(--text-body); line-height: 1.75; margin-bottom: 2rem; }
.avatar-row { display: flex; gap: -10px; }
.av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #1d4ed8); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.85rem; font-weight: 800; color: var(--white); border: 3px solid var(--bg-dark); margin-left: -10px; }
.av:first-child { margin-left: 0; }
.av.plus { background: rgba(37,99,235,0.2); font-size: 1rem; }

/* ── SERVICES PAGE ── */
.services-detail { background: var(--bg-dark); }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: rgba(37,99,235,0.12); line-height: 1; margin-bottom: 0.5rem; }
.service-block h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.3px; }
.service-block p { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 1.5rem; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.features-list li { font-size: 0.9rem; color: var(--text-body); display: flex; align-items: center; gap: 0.7rem; }
.features-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.service-visual { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden; }
.service-visual::before { content: ''; position: absolute; top: -30%; right: -20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%); pointer-events: none; }
.service-icon-large { width: 64px; height: 64px; border-radius: 16px; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--accent); font-size: 1.6rem; }
.service-visual h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-visual p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.visual-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.vtag { font-family: var(--font-sub); font-size: 0.75rem; color: var(--text-body); background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 20px; padding: 0.3rem 0.75rem; }
.vtag.blue { color: var(--accent); background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); }
.pricing-section { background: var(--bg-light); padding: 80px 5%; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid rgba(0,0,0,0.07); transition: all 0.3s; }
.price-card.featured { background: var(--bg-dark); border-color: var(--accent); position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-family: var(--font-sub); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 20px; }
.price-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.price-card.featured h3 { color: var(--white); }
.price-tag { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); margin: 0.8rem 0; }
.price-tag span { font-size: 0.9rem; font-weight: 400; color: #94a3b8; }
.price-desc { font-size: 0.88rem; color: #475569; line-height: 1.6; margin-bottom: 1.5rem; }
.price-card.featured .price-desc { color: var(--text-body); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.price-features li { font-size: 0.88rem; color: #475569; display: flex; align-items: center; gap: 0.6rem; }
.price-card.featured .price-features li { color: var(--text-body); }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.price-btn { display: block; text-align: center; font-family: var(--font-sub); font-size: 0.88rem; font-weight: 600; padding: 0.75rem; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.price-btn-outline { border: 1.5px solid var(--accent); color: var(--accent); }
.price-btn-outline:hover { background: var(--accent); color: var(--white); }
.price-btn-filled { background: var(--accent); color: var(--white); }
.price-btn-filled:hover { background: var(--accent-hover); }

/* ── OUR WORK PAGE ── */
.filter-section { padding: 40px 5% 0; }
.filter-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.tab { font-family: var(--font-sub); font-size: 0.83rem; font-weight: 500; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 20px; padding: 0.45rem 1.1rem; cursor: pointer; transition: all 0.2s; }
.tab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.tab.active { color: var(--white); background: var(--accent); border-color: var(--accent); }
.portfolio-section { padding: 40px 5% 100px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.project-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.project-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(37,99,235,0.05)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.project-thumb.c2 { background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(17,24,39,0.8)); }
.project-thumb.c3 { background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(37,99,235,0.08)); }
.project-thumb.c4 { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(37,99,235,0.08)); }
.project-thumb.c5 { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(37,99,235,0.08)); }
.project-thumb.c6 { background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(37,99,235,0.08)); }
.project-type-badge { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-sub); font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); background: rgba(11,17,32,0.85); border: 1px solid rgba(37,99,235,0.3); border-radius: 20px; padding: 0.25rem 0.7rem; }
.project-info { padding: 1.5rem; }
.project-info h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.project-info p { font-size: 0.87rem; line-height: 1.6; color: var(--text-body); margin-bottom: 1rem; }
.project-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ptag { font-family: var(--font-sub); font-size: 0.7rem; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 0.2rem 0.6rem; }
.cta-section.blue-bg { background: var(--accent); }
.cta-section.blue-bg h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px; }
.cta-section.blue-bg p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 60px 5% 100px; background: var(--bg-dark); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.contact-form-wrap { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; }
.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.9rem; color: var(--text-body); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: var(--font-sub); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: rgba(37,99,235,0.06); }
.form-group select option { background: var(--bg-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.submit-btn { width: 100%; background: var(--accent); color: var(--white); font-family: var(--font-sub); font-size: 1rem; font-weight: 600; padding: 1rem; border-radius: 10px; border: none; cursor: pointer; transition: all 0.25s; letter-spacing: 0.3px; }
.submit-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.submit-btn::after { content: ' →'; opacity: 0; display: inline-block; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.submit-btn:hover::after { opacity: 1; transform: translateX(0); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 1rem; display: flex; align-items: center; gap: 0.4rem; justify-content: center; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.info-text strong { display: block; font-family: var(--font-sub); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.2rem; }
.info-text a, .info-text p { font-size: 0.95rem; color: var(--text-light); text-decoration: none; line-height: 1.5; }
.info-text a:hover { color: var(--accent); }
.social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-sub); font-size: 0.85rem; font-weight: 500; color: var(--text-body); text-decoration: none; padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s; }
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.faq-section { margin-top: 1rem; }
.faq-section h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--font-sub); font-size: 0.88rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.4rem; }
.faq-a { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }
.process-strip { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px 5%; }
.strip-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.strip-item .step-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; color: var(--accent); font-size: 1.2rem; }
.strip-item h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.strip-item p { font-size: 0.83rem; color: var(--text-body); line-height: 1.6; }
.form-message { border-radius: 10px; padding: 1rem 1.5rem; margin-bottom: 1.5rem; font-family: var(--font-sub); font-size: 0.9rem; }
.form-message.success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: #4ade80; }
.form-message.error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); color: #f87171; }

/* ── TEAM PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.team-card-photo { aspect-ratio: 1/1; background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(37,99,235,0.04)); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-avatar-init { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: rgba(37,99,235,0.35); letter-spacing: -1px; }
.team-card-info { padding: 1.4rem; }
.team-card-info h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.team-card-info .role-tag { font-family: var(--font-sub); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; display: block; }
.team-card-info p { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }
.team-card.ceo-card { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.05); }
.team-card.placeholder { border-style: dashed; border-color: rgba(37,99,235,0.15); }
.team-card.placeholder .team-avatar-init { color: rgba(37,99,235,0.2); }
.team-card.placeholder h3 { color: var(--text-muted); }
.team-card.placeholder .role-tag { color: rgba(37,99,235,0.35); }
.join-section { background: var(--bg-light); }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.join-grid h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; }
.join-grid p { font-size: 0.97rem; color: #475569; line-height: 1.75; margin-bottom: 2rem; }
.open-roles { display: flex; flex-direction: column; gap: 0.8rem; }
.role-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.2s; }
.role-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(37,99,235,0.1); }
.role-card h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.role-card span { font-family: var(--font-sub); font-size: 0.75rem; color: #94a3b8; }
.role-badge { font-family: var(--font-sub); font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2); border-radius: 20px; padding: 0.25rem 0.7rem; white-space: nowrap; }

/* ── CEDRIC PAGE ── */
.cedric-hero { padding: 140px 5% 80px; background: var(--bg-dark); position: relative; overflow: hidden; }
.cedric-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 700px; height: 700px; background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); pointer-events: none; }
.cedric-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center; }
.cedric-photo { width: 100%; aspect-ratio: 4/5; border-radius: 24px; border: 1px solid var(--border); overflow: hidden; position: relative; display: block; background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.05)); }
.cedric-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 24px; display: block; }
.cedric-photo-label { position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(11,17,32,0.92); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.2rem; backdrop-filter: blur(8px); z-index: 2; }
.cedric-photo-label strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.cedric-photo-label span { font-family: var(--font-sub); font-size: 0.78rem; color: var(--accent); }
.ceo-tag { position: absolute; top: 1.5rem; right: -1rem; background: var(--accent); color: var(--white); font-family: var(--font-sub); font-size: 0.75rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 20px; z-index: 2; }
.eyebrow { font-family: var(--font-sub); font-size: 0.78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.cedric-name { font-family: var(--font-head); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 0.4rem; }
.cedric-role { font-family: var(--font-sub); font-size: 0.95rem; color: var(--accent); margin-bottom: 1.8rem; }
.cedric-bio { font-size: 0.97rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1rem; }
.cedric-values { list-style: none; margin: 1.8rem 0 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cedric-values li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.93rem; color: var(--text-body); line-height: 1.5; }
.cedric-values li .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.cedric-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.bg-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-dark); box-shadow: 0 0 0 2px var(--accent); flex-shrink: 0; margin-top: 3px; }
.tl-line { width: 2px; background: rgba(37,99,235,0.2); flex: 1; margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-content { padding-bottom: 0.5rem; }
.tl-year { font-family: var(--font-sub); font-size: 0.75rem; font-weight: 600; color: var(--accent); letter-spacing: 1px; margin-bottom: 0.25rem; }
.tl-company { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.tl-role-text { font-family: var(--font-sub); font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.tl-desc { font-size: 0.87rem; color: var(--text-body); line-height: 1.6; }
.skills-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.skill-cat h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag { font-family: var(--font-sub); font-size: 0.75rem; color: var(--text-body); background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 20px; padding: 0.3rem 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 3rem; }
  .service-block { gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .join-grid { gap: 2.5rem; }
  .cedric-hero-inner { grid-template-columns: 1fr 340px; gap: 3rem; }
  .bg-grid { gap: 3rem; }
  .story-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 5% 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding: 60px 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 70px 5%; }
  .cta-section h2 { font-size: 1.8rem; }
  .page-hero { padding: 100px 5% 50px; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.8rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cedric-hero-inner { grid-template-columns: 1fr; }
  .cedric-hero-inner > div:first-child { order: 2; }
  .cedric-hero-inner > div:last-child { order: 1; }
  .ceo-tag { right: 0.5rem; }
  .bg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
