/* ═══════════════════════════════════════════
   DreamLight Digital Ltd. — Design System
   SAP-Inspired Enterprise Aesthetic
   ═══════════════════════════════════════════ */

/* ── GOOGLE FONTS (loaded in HTML head) ──
   Bricolage Grotesque — Display/Headings
   Source Sans 3 — Body text
   ═══════════════════════════════════════════ */

:root {
  --blue-900: #001e60;
  --blue-800: #002a86;
  --blue-700: #0040b0;
  --blue-600: #0054d1;
  --blue-500: #0070f2;
  --blue-400: #3890ff;
  --blue-300: #6baaff;
  --blue-200: #a6cdff;
  --blue-100: #d4e7ff;
  --blue-50:  #eef5ff;
  --gray-900: #1a1d21;
  --gray-800: #2c3036;
  --gray-700: #3e434a;
  --gray-600: #556069;
  --gray-500: #6e7781;
  --gray-400: #8c959d;
  --gray-300: #b1b8c0;
  --gray-200: #d1d7dd;
  --gray-100: #e8ecef;
  --gray-50:  #f5f7f9;
  --white:    #ffffff;
  --green-500: #0a7b4e;
  --green-50:  #ecfdf5;
  --orange-500: #dd6b20;
  --orange-50:  #fffbeb;
  --teal-500: #0694a2;
  --teal-50:  #ecfeff;
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --text: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --primary: var(--blue-500);
  --primary-dark: var(--blue-700);
  --primary-light: var(--blue-50);
  --border: var(--gray-100);
  --border-hover: var(--gray-200);
  --nav-h: 64px;
  --section-pad: 96px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-blue: 0 4px 20px rgba(0,112,242,0.15);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:var(--nav-h); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:var(--font-body); background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
::selection { background:var(--blue-100); color:var(--blue-900); }

/* ═══ LAYOUT ═══ */
.container { max-width:1200px; margin:0 auto; padding:0 32px; }
.container-wide { max-width:1400px; margin:0 auto; padding:0 32px; }
@media (max-width:768px) { .container,.container-wide { padding:0 20px; } }

/* ═══ TYPOGRAPHY ═══ */
.eyebrow {
  font-family:var(--font-body);
  font-size:0.8rem; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--primary); margin-bottom:12px;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:700; line-height:1.2;
  color:var(--gray-900); margin-bottom:16px;
  letter-spacing:-0.02em;
}
.section-desc {
  font-size:1.1rem; color:var(--text-secondary);
  max-width:600px; line-height:1.7;
}

/* ═══ BUTTONS ═══ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 28px; border-radius:8px;
  font-family:var(--font-body); font-size:0.95rem;
  font-weight:600; cursor:pointer; border:none;
  transition:all 0.25s ease; white-space:nowrap;
}
.btn svg { width:16px; height:16px; flex-shrink:0; }
.btn-primary { background:var(--primary); color:var(--white); }
.btn-primary:hover { background:var(--primary-dark); box-shadow:var(--shadow-blue); transform:translateY(-1px); }
.btn-secondary { background:var(--white); color:var(--primary); border:1.5px solid var(--primary); }
.btn-secondary:hover { background:var(--primary-light); }
.btn-ghost { background:transparent; color:var(--primary); padding:12px 16px; }
.btn-ghost:hover { background:var(--primary-light); }
.btn-dark { background:var(--gray-900); color:var(--white); }
.btn-dark:hover { background:var(--gray-800); transform:translateY(-1px); }

/* ═══ TOPBAR ═══ */
.topbar { background:var(--blue-900); color:rgba(255,255,255,0.8); font-size:0.78rem; padding:6px 0; }
.topbar-inner { display:flex; justify-content:space-between; align-items:center; }
.topbar a { color:rgba(255,255,255,0.8); transition:color 0.2s; }
.topbar a:hover { color:#fff; }
.topbar-links { display:flex; gap:20px; }
@media (max-width:768px) { .topbar { display:none; } }

/* ═══ NAVIGATION ═══ */
.nav { position:sticky; top:0; z-index:1000; background:var(--white); border-bottom:1px solid var(--border); transition:box-shadow 0.3s ease; }
.nav.scrolled { box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:var(--nav-h); }
.nav-left { display:flex; align-items:center; gap:40px; }
.nav-logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-logo-img { height:38px; width:auto; }
.nav-logo-text { font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--gray-900); line-height:1.15; }
.nav-logo-sub { font-family:var(--font-body); font-size:0.65rem; color:var(--text-muted); font-weight:500; letter-spacing:0.5px; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link { padding:8px 16px; font-size:0.9rem; font-weight:500; color:var(--gray-700); border-radius:6px; transition:all 0.2s; position:relative; }
.nav-link:hover { color:var(--primary); background:var(--primary-light); }
.nav-link.active { color:var(--primary); font-weight:600; }
.nav-link.active::after { content:''; position:absolute; bottom:-1px; left:16px; right:16px; height:2px; background:var(--primary); border-radius:2px 2px 0 0; }
.nav-right { display:flex; align-items:center; gap:12px; }
.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
.nav-toggle span { width:22px; height:2px; background:var(--gray-700); border-radius:2px; transition:all 0.3s; }
.nav-mobile { display:none; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0; background:var(--white); padding:24px; z-index:999; border-top:1px solid var(--border); }
.nav-mobile.open { display:flex; flex-direction:column; gap:4px; }
.nav-mobile a { font-size:1.1rem; font-weight:500; padding:14px 16px; color:var(--gray-700); border-radius:8px; transition:background 0.2s; }
.nav-mobile a:hover { background:var(--primary-light); color:var(--primary); }
@media (max-width:900px) { .nav-links{display:none;} .nav-toggle{display:flex;} .nav-right .btn{display:none;} }

/* ═══ HERO ═══ */
.hero { background:linear-gradient(135deg,var(--blue-900) 0%,#003087 50%,var(--blue-700) 100%); color:var(--white); position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 20%,rgba(56,144,255,0.25),transparent 50%),radial-gradient(ellipse at 20% 80%,rgba(0,112,242,0.15),transparent 50%); pointer-events:none; }
.hero-shapes { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero-shape { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,0.08); }
.hero-shape:nth-child(1) { width:500px; height:500px; top:-100px; right:-100px; }
.hero-shape:nth-child(2) { width:300px; height:300px; bottom:-80px; left:10%; border-radius:30%; transform:rotate(15deg); }
.hero-shape:nth-child(3) { width:200px; height:200px; top:30%; right:20%; background:rgba(255,255,255,0.02); }
.hero-shape:nth-child(4) { width:120px; height:120px; bottom:20%; right:35%; border-radius:20%; border-color:rgba(255,255,255,0.05); background:rgba(255,255,255,0.03); }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:80px 0; min-height:560px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; font-weight:600; color:var(--blue-200); letter-spacing:0.5px; margin-bottom:20px; text-transform:uppercase; }
.hero-eyebrow-dot { width:6px; height:6px; background:var(--blue-300); border-radius:50%; }
.hero-title { font-family:var(--font-display); font-size:clamp(2.4rem,5vw,3.6rem); font-weight:800; line-height:1.1; margin-bottom:20px; letter-spacing:-0.02em; }
.hero-title em { font-style:normal; color:var(--blue-200); }
.hero-desc { font-size:1.15rem; color:rgba(255,255,255,0.8); line-height:1.7; margin-bottom:32px; max-width:520px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.hero .btn-primary { background:var(--white); color:var(--blue-800); }
.hero .btn-primary:hover { background:var(--blue-50); box-shadow:0 4px 20px rgba(255,255,255,0.15); }
.hero .btn-secondary { border-color:rgba(255,255,255,0.4); color:var(--white); background:transparent; }
.hero .btn-secondary:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.hero-visual { display:flex; flex-direction:column; gap:16px; }
.hero-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.hero-stat-card { background:rgba(255,255,255,0.08); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius); padding:24px; transition:all 0.3s; }
.hero-stat-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.hero-stat-value { font-family:var(--font-display); font-size:2rem; font-weight:800; color:var(--white); line-height:1; margin-bottom:4px; }
.hero-stat-label { font-size:0.85rem; color:rgba(255,255,255,0.65); }
.hero-stat-card.accent { background:var(--white); border-color:transparent; }
.hero-stat-card.accent .hero-stat-value { color:var(--blue-700); }
.hero-stat-card.accent .hero-stat-label { color:var(--gray-500); }
@media (max-width:900px) { .hero-inner{grid-template-columns:1fr; padding:60px 0; min-height:auto;} .hero-visual{display:none;} }

/* ═══ TRUST BAR ═══ */
.trust-bar { border-bottom:1px solid var(--border); padding:20px 0; background:var(--white); }
.trust-inner { display:flex; align-items:center; gap:40px; overflow-x:auto; scrollbar-width:none; }
.trust-inner::-webkit-scrollbar { display:none; }
.trust-label { font-size:0.78rem; font-weight:600; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; flex-shrink:0; }
.trust-divider { width:1px; height:24px; background:var(--gray-200); flex-shrink:0; }
.trust-items { display:flex; gap:36px; align-items:center; }
.trust-item { font-family:var(--font-display); font-size:0.95rem; font-weight:600; color:var(--gray-400); white-space:nowrap; transition:color 0.3s; }
.trust-item:hover { color:var(--gray-600); }

/* ═══ SECTIONS ═══ */
.section { padding:var(--section-pad) 0; }
.section-alt { background:var(--bg-alt); }
.section-header { text-align:center; max-width:680px; margin:0 auto 56px; }
.section-header-left { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; gap:32px; flex-wrap:wrap; }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:36px 28px; transition:all 0.3s ease; cursor:default; }
.service-card:hover { border-color:var(--blue-200); box-shadow:var(--shadow); transform:translateY(-3px); }
.service-card-icon { width:48px; height:48px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:20px; }
.service-card-icon.blue { background:var(--blue-50); }
.service-card-icon.green { background:var(--green-50); }
.service-card-icon.orange { background:var(--orange-50); }
.service-card-icon.teal { background:var(--teal-50); }
.service-card h3 { font-family:var(--font-display); font-size:1.1rem; font-weight:700; margin-bottom:10px; color:var(--gray-900); }
.service-card p { font-size:0.92rem; color:var(--text-secondary); line-height:1.65; }
.service-card-link { display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:0.88rem; font-weight:600; color:var(--primary); opacity:0; transform:translateY(4px); transition:all 0.3s ease; }
.service-card:hover .service-card-link { opacity:1; transform:translateY(0); }
@media (max-width:900px) { .services-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px) { .services-grid{grid-template-columns:1fr;} }

/* ═══ FEATURE SPLIT ═══ */
.feature-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.feature-split.reverse { direction:rtl; }
.feature-split.reverse > * { direction:ltr; }
.feature-visual { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; background:linear-gradient(135deg,var(--blue-50),var(--gray-50)); border:1px solid var(--border); }
.feature-visual-inner { position:absolute; inset:0; display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:repeat(3,1fr); gap:12px; padding:28px; }
.fv-cell { background:var(--white); border-radius:var(--radius-sm); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:0.72rem; font-weight:600; color:var(--gray-400); transition:all 0.3s ease; }
.fv-cell:hover { border-color:var(--primary); color:var(--primary); background:var(--blue-50); }
.fv-cell.span-2 { grid-column:span 2; }
.fv-cell.highlight { background:var(--primary); color:var(--white); border-color:var(--primary); }
.fv-cell.highlight:hover { background:var(--primary-dark); }
.feature-list { margin-top:28px; display:flex; flex-direction:column; gap:16px; }
.feature-item { display:flex; gap:14px; align-items:flex-start; }
.feature-item-check { width:24px; height:24px; border-radius:50%; background:var(--green-50); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.feature-item-check svg { width:14px; height:14px; color:var(--green-500); }
.feature-item h4 { font-family:var(--font-display); font-size:0.95rem; font-weight:600; margin-bottom:2px; }
.feature-item p { font-size:0.85rem; color:var(--text-secondary); line-height:1.55; }
@media (max-width:900px) { .feature-split,.feature-split.reverse{grid-template-columns:1fr; gap:40px; direction:ltr;} }

/* ═══ PRODUCTS ═══ */
.products-showcase { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-bottom:48px; }
.product-card-lg { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:40px 32px; position:relative; overflow:hidden; transition:all 0.3s; }
.product-card-lg:hover { border-color:var(--blue-200); box-shadow:var(--shadow); }
.tag { display:inline-block; font-size:0.72rem; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; padding:4px 12px; border-radius:50px; margin-bottom:16px; }
.tag-blue { background:var(--blue-50); color:var(--primary); }
.tag-green { background:var(--green-50); color:var(--green-500); }
.tag-orange { background:var(--orange-50); color:var(--orange-500); }
.tag-teal { background:var(--teal-50); color:var(--teal-500); }
.product-card-lg h3 { font-family:var(--font-display); font-size:1.3rem; font-weight:700; margin-bottom:10px; }
.product-card-lg p { color:var(--text-secondary); font-size:0.92rem; line-height:1.65; }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.product-mini { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); padding:20px 18px; transition:all 0.25s ease; }
.product-mini:hover { border-color:var(--blue-200); box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.product-mini-icon { font-size:1.2rem; margin-bottom:10px; }
.product-mini h4 { font-family:var(--font-display); font-size:0.88rem; font-weight:600; margin-bottom:4px; line-height:1.3; color:var(--gray-900); }
.product-mini p { font-size:0.78rem; color:var(--text-muted); line-height:1.5; }
@media (max-width:900px) { .products-showcase{grid-template-columns:1fr;} .products-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px) { .products-grid{grid-template-columns:1fr;} }

/* ═══ PROCESS / WHY US ═══ */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.process-card { text-align:center; padding:32px 20px; }
.process-num { width:56px; height:56px; border-radius:50%; background:var(--primary-light); color:var(--primary); font-family:var(--font-display); font-weight:800; font-size:1.2rem; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; border:2px solid var(--blue-200); }
.process-card h4 { font-family:var(--font-display); font-weight:700; font-size:1rem; margin-bottom:8px; }
.process-card p { font-size:0.85rem; color:var(--text-secondary); line-height:1.6; }
@media (max-width:768px) { .process-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:480px) { .process-grid{grid-template-columns:1fr;} }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:32px 28px; transition:all 0.3s; }
.testimonial-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.testimonial-stars { color:#f59e0b; font-size:0.85rem; letter-spacing:1px; margin-bottom:16px; }
.testimonial-text { color:var(--text-secondary); font-size:0.95rem; line-height:1.7; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--border); }
.testimonial-avatar { width:40px; height:40px; border-radius:50%; background:var(--primary); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:0.85rem; color:var(--white); }
.testimonial-name { font-weight:600; font-size:0.9rem; }
.testimonial-role { font-size:0.78rem; color:var(--text-muted); }
@media (max-width:900px) { .testimonials-grid{grid-template-columns:1fr;} }

/* ═══ CONTACT ═══ */
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:56px; }
.contact-detail { display:flex; gap:14px; margin-bottom:24px; }
.contact-icon { width:44px; height:44px; border-radius:var(--radius-sm); background:var(--primary-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.1rem; }
.contact-detail h4 { font-family:var(--font-display); font-size:0.92rem; font-weight:600; margin-bottom:2px; }
.contact-detail p,.contact-detail a { font-size:0.88rem; color:var(--text-secondary); line-height:1.5; }
.contact-detail a:hover { color:var(--primary); }
.contact-form-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:40px; box-shadow:var(--shadow-sm); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:0.82rem; font-weight:600; color:var(--gray-700); margin-bottom:6px; }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:11px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--gray-200); background:var(--white); color:var(--gray-900); font-family:var(--font-body); font-size:0.9rem; transition:all 0.2s; outline:none; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(0,112,242,0.1); }
.form-group textarea { resize:vertical; min-height:100px; }
@media (max-width:900px) { .contact-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;} }

/* ═══ CTA BANNER ═══ */
.cta-banner { background:linear-gradient(135deg,var(--blue-900),var(--blue-700)); border-radius:var(--radius-lg); padding:64px; color:var(--white); text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%,rgba(56,144,255,0.3),transparent 60%); }
.cta-banner > * { position:relative; z-index:2; }
.cta-banner h2 { font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800; margin-bottom:12px; }
.cta-banner p { font-size:1.05rem; color:rgba(255,255,255,0.8); max-width:500px; margin:0 auto 28px; line-height:1.7; }
.cta-banner .btn-primary { background:var(--white); color:var(--blue-800); }
.cta-banner .btn-primary:hover { background:var(--blue-50); box-shadow:0 4px 20px rgba(255,255,255,0.15); }
.cta-banner .btn-secondary { border-color:rgba(255,255,255,0.4); color:var(--white); background:transparent; }
.cta-banner .btn-secondary:hover { background:rgba(255,255,255,0.1); }

/* ═══ FOOTER ═══ */
.footer { background:var(--gray-900); color:rgba(255,255,255,0.7); padding:64px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:24px; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:4px; }
.footer-logo-img { height:36px; width:auto; filter:brightness(0) invert(1); }
.footer-brand-desc { font-size:0.88rem; line-height:1.65; margin-top:16px; max-width:300px; color:rgba(255,255,255,0.5); }
.footer-socials { display:flex; gap:10px; margin-top:20px; }
.footer-social { width:36px; height:36px; border-radius:8px; border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; font-size:0.8rem; color:rgba(255,255,255,0.5); transition:all 0.2s; }
.footer-social:hover { border-color:var(--primary); color:var(--blue-300); background:rgba(0,112,242,0.1); }
.footer-col h4 { font-family:var(--font-display); font-weight:700; font-size:0.88rem; margin-bottom:16px; color:var(--white); }
.footer-col a { display:block; color:rgba(255,255,255,0.5); font-size:0.85rem; padding:4px 0; transition:color 0.2s; }
.footer-col a:hover { color:var(--blue-300); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.35); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:0.78rem; color:rgba(255,255,255,0.35); transition:color 0.2s; }
.footer-bottom-links a:hover { color:rgba(255,255,255,0.7); }
@media (max-width:900px) { .footer-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:600px) { .footer-grid{grid-template-columns:1fr;} }

/* ═══ MK PAGE SPECIFIC ═══ */
.mk-profile { display:grid; grid-template-columns:280px 1fr; gap:48px; align-items:start; }
.mk-sidebar { position:sticky; top:calc(var(--nav-h) + 24px); }
.mk-avatar { width:160px; height:160px; border-radius:50%; border:4px solid var(--blue-100); overflow:hidden; margin:0 auto 20px; background:var(--gray-50); display:flex; align-items:center; justify-content:center; }
.mk-avatar img { width:100%; height:100%; object-fit:cover; }
.mk-sidebar-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:28px 24px; text-align:center; }
.mk-sidebar-name { font-family:var(--font-display); font-size:1.3rem; font-weight:700; margin-bottom:4px; }
.mk-sidebar-role { font-size:0.88rem; color:var(--text-secondary); margin-bottom:16px; line-height:1.5; }
.mk-sidebar-links { display:flex; flex-direction:column; gap:8px; margin-top:20px; padding-top:20px; border-top:1px solid var(--border); }
.mk-sidebar-links a { display:flex; align-items:center; gap:10px; padding:8px 12px; border-radius:var(--radius-sm); font-size:0.88rem; color:var(--text-secondary); transition:all 0.2s; }
.mk-sidebar-links a:hover { background:var(--primary-light); color:var(--primary); }
.mk-content { min-width:0; }
.mk-content h2 { font-family:var(--font-display); font-size:1.5rem; font-weight:700; margin:40px 0 16px; color:var(--gray-900); padding-bottom:10px; border-bottom:2px solid var(--blue-100); }
.mk-content h2:first-child { margin-top:0; }
.mk-content h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:700; margin:28px 0 12px; color:var(--gray-800); }
.mk-content p { font-size:0.95rem; color:var(--text-secondary); line-height:1.75; margin-bottom:12px; }
.mk-content strong { color:var(--gray-900); }
.mk-quote { background:var(--blue-50); border-left:4px solid var(--primary); padding:20px 24px; border-radius:0 var(--radius-sm) var(--radius-sm) 0; margin:24px 0; font-style:italic; color:var(--gray-700); font-size:1rem; line-height:1.7; }
.mk-companies-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:20px 0; }
.mk-company-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); padding:20px; transition:all 0.3s; }
.mk-company-card:hover { border-color:var(--blue-200); box-shadow:var(--shadow-sm); }
.mk-company-card h4 { font-family:var(--font-display); font-size:0.95rem; font-weight:700; margin-bottom:6px; color:var(--gray-900); }
.mk-company-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.55; margin-bottom:0; }
.mk-skills-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:20px 0; }
.mk-skill { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); padding:18px 16px; transition:all 0.2s; }
.mk-skill:hover { border-color:var(--blue-200); transform:translateY(-2px); }
.mk-skill-icon { font-size:1.2rem; margin-bottom:8px; }
.mk-skill h4 { font-family:var(--font-display); font-size:0.85rem; font-weight:600; margin-bottom:4px; }
.mk-skill p { font-size:0.78rem; color:var(--text-muted); line-height:1.5; margin-bottom:0; }
.mk-fields { display:flex; flex-wrap:wrap; gap:10px; margin:20px 0; }
.mk-field-tag { padding:8px 18px; border-radius:50px; background:var(--blue-50); color:var(--primary); font-size:0.82rem; font-weight:600; border:1px solid var(--blue-100); }
@media (max-width:900px) { .mk-profile{grid-template-columns:1fr;} .mk-sidebar{position:static;} .mk-companies-grid,.mk-skills-grid{grid-template-columns:1fr;} }

/* ═══ SCROLL REVEALS ═══ */
.reveal { opacity:0; transform:translateY(20px); transition:all 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; }
