*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple:       #4B2E8C;
  --purple-dark:  #3a2270;
  --purple-light: #6040a8;
  --purple-dim:   rgba(75,46,140,0.08);
  --purple-border:rgba(75,46,140,0.18);
  --teal:         #1CAAAA;
  --teal-dark:    #158888;
  --teal-light:   #2ecece;
  --teal-dim:     rgba(28,170,170,0.08);
  --teal-border:  rgba(28,170,170,0.22);
  --white:        #ffffff;
  --bg:           #ffffff;
  --bg-soft:      #f7f8fc;
  --bg-mid:       #eef0f7;
  --text-dark:    #1a1630;
  --text-body:    #3d3a52;
  --text-muted:   #7d7a95;
  --border-light: rgba(75,46,140,0.1);
  --border-mid:   rgba(75,46,140,0.16);
  --hero-bg:      #0d0820;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      'Space Grotesk', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-w: 1680px;
  --px: clamp(20px, 5vw, 72px);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-body); font-family: var(--font-body); font-size: 15px; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(75,46,140,0.08); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.05em; color: var(--purple); flex-shrink: 0; }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-ui); font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--purple); }
.nav-cta { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 9px 22px; background: var(--purple); color: #fff; border: none; border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s; flex-shrink: 0; white-space: nowrap; }
.nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border-light); padding: 20px var(--px) 28px; z-index: 199; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--text-body); padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta { margin-top: 12px; background: var(--purple); color: #fff; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; }

/* HERO */
.hero { min-height: 100svh; background: var(--hero-bg); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 64px; }
.hero-bg-img { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(13,8,32,0.96) 0%, rgba(22,14,48,0.80) 55%, rgba(13,8,32,0.97) 100%), url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600&q=80') center/cover no-repeat; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(28,170,170,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(28,170,170,0.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent); }
.hero-accent { position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(75,46,140,0.35) 0%, transparent 70%); pointer-events: none; }
.hero-accent2 { position: absolute; bottom: -60px; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(28,170,170,0.2) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: flex-end; padding: clamp(48px,8vw,100px) var(--px) clamp(64px,8vw,100px); max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(28,170,170,0.3); background: rgba(28,170,170,0.1); padding: 5px 13px; border-radius: 2px; margin-bottom: 28px; animation: fadeUp 0.7s ease both; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero-h1 { font-family: var(--font-display); font-size: clamp(48px,7.5vw,96px); font-weight: 700; line-height: 0.93; letter-spacing: -0.01em; color: #fff; margin-bottom: 24px; animation: fadeUp 0.7s 0.1s ease both; }
.hero-h1 em { color: var(--teal); font-style: normal; }
.hero-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 420px; margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero-right { animation: fadeUp 0.7s 0.15s ease both; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.hero-stat { background: rgba(22,14,48,0.75); backdrop-filter: blur(8px); padding: clamp(18px,3vw,28px) clamp(14px,2.5vw,24px); }
.hero-stat-num { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 700; line-height: 1; color: var(--teal); margin-bottom: 5px; }
.hero-stat-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: var(--font-ui); }
.hero-location { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); font-family: var(--font-ui); }
.hero-location-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; z-index: 2; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--teal), transparent); animation: dropLine 1.6s ease-in-out infinite; }
@keyframes dropLine { 0%{transform:scaleY(0);transform-origin:top;opacity:1} 50%{transform:scaleY(1);transform-origin:top;opacity:1} 100%{transform:scaleY(0);transform-origin:bottom;opacity:0} }

/* Buttons — hero */
.btn-hero-primary { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 13px 28px; background: var(--teal); color: #fff; border: none; border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s; }
.btn-hero-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-hero-ghost { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 28px; background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-sm); transition: all 0.2s; }
.btn-hero-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); }
/* Buttons — light */
.btn-purple { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 28px; background: var(--purple); color: #fff; border: none; border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-2px); }
.btn-teal { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 28px; background: var(--teal); color: #fff; border: none; border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 11px 28px; background: transparent; color: var(--purple); border: 1.5px solid var(--purple-border); border-radius: var(--radius-sm); transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--purple-dim); border-color: var(--purple); }
.btn-white { font-family: var(--font-ui); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 14px 32px; flex-shrink: 0; background: #fff; color: var(--purple); border: none; border-radius: var(--radius-sm); transition: all 0.2s; }
.btn-white:hover { background: var(--teal-light); color: #fff; transform: translateY(-2px); }

/* STATS BAR */
.stats-bar { background: var(--purple); padding: clamp(20px,3vw,28px) var(--px); }
.stats-bar-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sbar-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 100px; }
.sbar-num { font-family: var(--font-display); font-size: clamp(20px,3vw,32px); font-weight: 700; color: var(--teal-light); line-height: 1; }
.sbar-txt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.6); font-family: var(--font-ui); line-height: 1.4; }
.sbar-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* SHARED */
section { padding: clamp(60px,9vw,108px) 0; }
.sec-eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.sec-title { font-family: var(--font-display); font-size: clamp(32px,4.5vw,52px); font-weight: 700; line-height: 1.05; color: var(--text-dark); margin-bottom: 14px; }
.sec-sub { font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 480px; }
.view-all-link { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--teal-border); padding: 8px 18px; border-radius: var(--radius-sm); transition: all 0.2s; white-space: nowrap; }
.view-all-link:hover { background: var(--teal-dim); }

/* SERVICES */
.services { background: var(--bg); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(36px,5vw,56px); flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.svc-card { padding: clamp(24px,3vw,36px) clamp(18px,2.5vw,28px); border-right: 1px solid var(--border-light); position: relative; overflow: hidden; transition: background 0.25s; background: var(--bg); }
.svc-card:last-child { border-right: none; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.svc-card:hover { background: var(--bg-soft); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; color: rgba(75,46,140,0.08); margin-bottom: 18px; transition: color 0.3s; }
.svc-card:hover .svc-num { color: rgba(75,46,140,0.15); }
.svc-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--purple-dim); border: 1px solid var(--purple-border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 17px; height: 17px; stroke: var(--purple); fill: none; stroke-width: 1.6; }
.svc-title { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.svc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.svc-link { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.svc-card:hover .svc-link { gap: 9px; }

/* WORK */
.work { background: var(--bg-soft); }
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(32px,4vw,48px); flex-wrap: wrap; }
.work-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 180px; gap: 8px; }
.work-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.work-item:first-child { grid-row: 1/3; }
.work-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.3s; filter: brightness(0.78) saturate(0.9); }
.work-item:hover .work-img { transform: scale(1.06); filter: brightness(0.9) saturate(1.05); }
.work-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 14px 12px; background: linear-gradient(to top, rgba(13,8,32,0.85), transparent); font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.work-label span { color: var(--teal); margin-right: 6px; }

/* ABOUT */
.about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 18px; border-radius: var(--radius-sm); line-height: 1.5; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-meta { display: flex; gap: clamp(16px,3vw,32px); margin: 32px 0 36px; flex-wrap: wrap; }
.meta-lbl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-ui); margin-bottom: 3px; }
.meta-val { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--text-dark); }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* WHY */
.why { background: var(--bg-soft); }
.why-header { text-align: center; margin-bottom: clamp(40px,5vw,64px); }
.why-header .sec-sub { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: var(--bg); padding: clamp(24px,3vw,40px) clamp(18px,2.5vw,28px); border-right: 1px solid var(--border-light); transition: background 0.25s; }
.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--bg-soft); }
.why-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--purple), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3; margin-bottom: 20px; display: block; transition: opacity 0.3s; }
.why-card:hover .why-num { opacity: 0.55; }
.why-card-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.why-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* CAREERS */
.careers { background: var(--bg); }
.careers-head { margin-bottom: clamp(32px,4vw,48px); }
.jobs-list { border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: clamp(18px,2.5vw,28px) clamp(20px,3vw,32px); border-bottom: 1px solid var(--border-light); transition: background 0.2s; cursor: pointer; background: var(--bg); }
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--bg-soft); }
.job-title { font-family: var(--font-ui); font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-tag { font-size: 11px; font-family: var(--font-ui); font-weight: 500; padding: 3px 10px; border-radius: 2px; background: var(--teal-dim); color: var(--teal-dark); border: 1px solid var(--teal-border); }
.job-arrow { font-size: 18px; color: var(--text-muted); transition: all 0.2s; flex-shrink: 0; }
.job-row:hover .job-arrow { color: var(--purple); transform: translateX(4px); }
.careers-cta { margin-top: 32px; }

/* NEWS */
.news { background: var(--bg-soft); }
.news-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(32px,4vw,48px); flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.news-card { background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; cursor: pointer; }
.news-card:hover { border-color: var(--purple-border); box-shadow: 0 8px 28px rgba(75,46,140,0.08); transform: translateY(-3px); }
.news-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.9); transition: filter 0.3s; }
.news-card:hover .news-img { filter: brightness(1); }
.news-body { padding: 22px; }
.news-cat { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-ui); font-weight: 600; color: var(--teal-dark); margin-bottom: 9px; }
.news-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 9px; }
.news-date { font-size: 12px; color: var(--text-muted); font-family: var(--font-ui); }

/* CTA */
.cta-banner { background: linear-gradient(135deg, var(--purple) 0%, #2d1860 50%, #0f4040 100%); padding: clamp(56px,7vw,80px) var(--px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.6); }

/* FOOTER */
footer { background: var(--text-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: clamp(48px,7vw,80px) var(--px) clamp(24px,4vw,36px); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); margin-bottom: 48px; }
.footer-brand .fl { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 240px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { border-bottom: 1px solid var(--border-light); }
  .svc-card:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .svc-card:nth-child(even) { border-right: none; }
  .svc-card:nth-last-child(-n+2) { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-bottom: 1px solid var(--border-light); }
  .why-card:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .why-card:nth-child(even) { border-right: none; }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .nav-links { gap: 16px; }
}
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-desc { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
  .work-item:first-child { grid-column: 1/-1; grid-row: 1; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .sbar-divider { display: none; }
}
@media (max-width: 640px) {
  :root { --px: 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; border-bottom: 1px solid var(--border-light); }
  .svc-card:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; border-bottom: 1px solid var(--border-light); }
  .why-card:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5,190px); }
  .work-item:first-child { grid-column: 1; grid-row: 1; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .cta-banner { justify-content: center; text-align: center; }
  .cta-banner > div { text-align: center; }
  .stats-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; text-align: center; }
  .about-actions { flex-direction: column; }
  .services-head, .work-head, .news-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .hero-stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
}

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex; align-items: center;
  gap: 0; flex-shrink: 0;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lang-btn {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; line-height: 1;
  background: transparent; color: var(--text-muted);
  border: none; cursor: pointer;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.lang-btn:first-child { border-right: 1px solid var(--border-mid); }
.lang-btn.active {
  background: var(--purple); color: #fff;
}
.lang-btn:not(.active):hover { background: var(--purple-dim); color: var(--purple); }

/* mobile lang */
.mob-lang {
  display: flex; gap: 0;
  border: 1px solid var(--border-mid); border-radius: var(--radius-sm);
  overflow: hidden; margin-top: 16px; width: fit-content;
}
.mob-lang .lang-btn { font-size: 12px; padding: 8px 16px; }

@media (max-width: 640px) {
  .lang-switcher { display: none; }
}

/* ── NAV RIGHT GROUP ── */
.nav-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
@media (max-width: 640px) {
  .nav-right { display: none; }
}

/* ════════════════════════════════════════
   PAGE BANNER (shared across inner pages)
   ════════════════════════════════════════ */
.page-banner {
  margin-top: 64px;
  position: relative;
  height: clamp(200px, 28vw, 360px);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-banner-img {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,8,32,0.45) 0%, rgba(13,8,32,0.72) 100%),
              url('') center/cover no-repeat;
  width: 100%; height: 100%;
}
.page-banner-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px) clamp(28px, 4vw, 48px);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1;
  color: #fff; letter-spacing: -0.01em;
  animation: fadeUp 0.6s ease both;
}
.page-banner-eyebrow {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
  animation: fadeUp 0.6s ease both;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  padding: 12px var(--px);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 12px; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--purple); }
.breadcrumb-inner .bc-sep { opacity: 0.4; }
.breadcrumb-inner .bc-cur { color: var(--purple); font-weight: 500; }

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */

/* ── Intro section ── */
.ab-intro { background: var(--bg); }
.ab-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px); align-items: start;
}
.ab-intro-text .sec-title { margin-bottom: 20px; }
.ab-intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.ab-intro-text a { color: var(--teal); text-decoration: underline; text-decoration-color: var(--teal-border); }
.ab-intro-text a:hover { color: var(--teal-dark); }
.ab-meta-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden; margin-top: 36px;
}
.ab-meta-cell {
  padding: 22px 20px; border-right: 1px solid var(--border-light);
  background: var(--bg-soft);
}
.ab-meta-cell:last-child { border-right: none; }
.ab-meta-cell .meta-lbl { margin-bottom: 6px; }
.ab-meta-cell .meta-val { font-size: 15px; }

/* Right image stack */
.ab-img-stack { position: relative; }
.ab-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md);
}
.ab-img-badge2 {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(13,8,32,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(28,170,170,0.3);
  color: #fff; font-family: var(--font-ui); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--radius-sm);
}
.ab-img-badge2 span { color: var(--teal); }

/* ── Focus section (dark bg, image left / card right) ── */
.ab-focus {
  background: #111827;
  padding: 0;
  position: relative; overflow: hidden;
}
.ab-focus-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 55vw, 700px);
}
.ab-focus-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: brightness(0.85);
}
.ab-focus-content {
  padding: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  background: #0f172a;
}
.ab-focus-content .sec-eyebrow { color: var(--teal); margin-bottom: 18px; }
.ab-focus-content .sec-title { color: #fff; margin-bottom: 32px; font-size: clamp(26px, 3.5vw, 42px); }
.ab-focus-list { display: flex; flex-direction: column; gap: 22px; }
.ab-focus-item {}
.ab-focus-item-title {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: #fff; margin-bottom: 5px;
}
.ab-focus-item-title strong { color: var(--teal); font-weight: 600; }
.ab-focus-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── Quality / certifications ── */
.ab-quality { background: var(--bg); }
.ab-quality-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 560px; }
.ab-quality-head p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-top: 14px; }
.ab-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 56px;
}
.ab-gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.ab-gallery-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.3s, transform 0.4s;
}
.ab-gallery-item:hover .ab-gallery-img { filter: brightness(0.95) saturate(1.05); transform: scale(1.04); }
.ab-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(13,8,32,0.82), transparent);
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── Why Northwind mini-cards ── */
.ab-why { background: var(--bg-soft); }
.ab-why-head { margin-bottom: clamp(36px, 4vw, 52px); }
.ab-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ab-why-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  position: relative; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
}
.ab-why-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--purple), var(--teal));
  transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease;
}
.ab-why-card:hover { box-shadow: 0 8px 32px rgba(75,46,140,0.09); transform: translateY(-3px); }
.ab-why-card:hover::before { transform: scaleY(1); }
.ab-why-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ab-why-icon svg { width: 18px; height: 18px; stroke: var(--purple); fill: none; stroke-width: 1.6; }
.ab-why-card-title { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.ab-why-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1024px) {
  .ab-why-grid { grid-template-columns: 1fr 1fr; }
  .ab-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ab-intro-inner { grid-template-columns: 1fr; }
  .ab-img-stack { order: -1; }
  .ab-focus-inner { grid-template-columns: 1fr; }
  .ab-focus-img { height: 300px; }
  .ab-meta-row { grid-template-columns: 1fr; }
  .ab-meta-cell { border-right: none; border-bottom: 1px solid var(--border-light); }
  .ab-meta-cell:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-gallery { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   SERVICES PAGE  (.page-services)
   ════════════════════════════════════════ */

/* ── Services intro header ── */
.sv-intro { background: var(--bg); }
.sv-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px); align-items: center;
}
.sv-intro-text .sec-title { margin-bottom: 20px; }
.sv-intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.sv-intro-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); }

/* ── Service cards grid ── */
.sv-list { background: var(--bg-soft); }
.sv-list-head { margin-bottom: clamp(40px,5vw,60px); }
.sv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sv-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.sv-card:hover { box-shadow: 0 12px 40px rgba(75,46,140,0.1); transform: translateY(-4px); }
.sv-card-img-wrap { position: relative; overflow: hidden; }
.sv-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.35s, transform 0.45s;
}
.sv-card:hover .sv-card-img { filter: brightness(0.95) saturate(1.05); transform: scale(1.04); }
.sv-card-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--purple); color: #fff;
  padding: 4px 12px; border-radius: 2px;
}
.sv-card-body { padding: clamp(24px,3vw,36px); flex: 1; display: flex; flex-direction: column; }
.sv-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.sv-card-icon svg { width: 20px; height: 20px; stroke: var(--purple); fill: none; stroke-width: 1.6; }
.sv-card-title {
  font-family: var(--font-display); font-size: clamp(22px,2.5vw,28px);
  font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.1;
}
.sv-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.sv-card-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.sv-card-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-body); line-height: 1.6;
}
.sv-card-bullets li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.sv-card-link {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s; align-self: flex-start;
  border-bottom: 1px solid var(--teal-border); padding-bottom: 2px;
}
.sv-card:hover .sv-card-link { gap: 10px; border-color: var(--teal); }

/* ── Full-width feature strip (alternating) ── */
.sv-feature { background: var(--bg); overflow: hidden; padding: 0; }
.sv-feature + .sv-feature { border-top: 1px solid var(--border-light); }
.sv-feature-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max-w); margin: 0 auto;
  min-height: clamp(380px, 45vw, 560px);
}
.sv-feature-inner.reverse { direction: rtl; }
.sv-feature-inner.reverse > * { direction: ltr; }
.sv-feature-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); display: block; }
.sv-feature-content {
  padding: clamp(48px,6vw,88px) clamp(40px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.sv-feature-content .sec-eyebrow { margin-bottom: 14px; }
.sv-feature-content .sec-title { font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.sv-feature-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.sv-feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.sv-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-body); line-height: 1.6;
}
.sv-feature-list li .bullet-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.sv-feature-list li .bullet-icon::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); display: block;
}

/* ── Process steps bar ── */
.sv-process { background: var(--bg-soft); }
.sv-process-head { text-align: center; margin-bottom: clamp(40px,5vw,64px); }
.sv-process-head .sec-sub { margin: 0 auto; }
.sv-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; gap: 0;
}
.sv-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: var(--border-mid); z-index: 0;
}
.sv-step { text-align: center; padding: 0 clamp(12px,2vw,24px); position: relative; z-index: 1; }
.sv-step-dot {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--border-mid);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.25s, border-color 0.25s;
}
.sv-step:hover .sv-step-dot { background: var(--purple); border-color: var(--purple); }
.sv-step-dot svg { width: 22px; height: 22px; stroke: var(--purple); fill: none; stroke-width: 1.6; transition: stroke 0.25s; }
.sv-step:hover .sv-step-dot svg { stroke: #fff; }
.sv-step-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.sv-step-title { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.sv-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── SERVICES RESPONSIVE ── */
@media (max-width: 1024px) {
  .sv-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sv-steps::before { display: none; }
}
@media (max-width: 860px) {
  .sv-intro-inner { grid-template-columns: 1fr; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-feature-inner { grid-template-columns: 1fr; min-height: auto; }
  .sv-feature-inner.reverse { direction: ltr; }
  .sv-feature-img { height: 260px; }
}
@media (max-width: 640px) {
  .sv-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════
   WHY US PAGE  (.page-whyus)
   ════════════════════════════════════════ */

/* ── Intro ── */
.wy-intro { background: var(--bg); }
.wy-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px); align-items: center;
}
.wy-intro-text .sec-title { margin-bottom: 20px; }
.wy-intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.wy-intro-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); }

/* ── 3 Main reason cards (image top, text below) ── */
.wy-reasons { background: var(--bg-soft); }
.wy-reasons-head { margin-bottom: clamp(40px,5vw,60px); }
.wy-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.wy-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.wy-card:hover { box-shadow: 0 12px 40px rgba(75,46,140,0.1); transform: translateY(-4px); }
.wy-card-img-wrap { position: relative; overflow: hidden; }
.wy-card-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.35s, transform 0.45s;
}
.wy-card:hover .wy-card-img { filter: brightness(0.95) saturate(1.05); transform: scale(1.04); }
.wy-card-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal); color: #fff;
  padding: 4px 12px; border-radius: 2px;
}
.wy-card-body {
  padding: clamp(24px,3vw,36px);
  flex: 1; display: flex; flex-direction: column;
}
.wy-card-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  line-height: 1; color: rgba(75,46,140,0.09);
  margin-bottom: 16px; transition: color 0.3s;
}
.wy-card:hover .wy-card-num { color: rgba(75,46,140,0.18); }
.wy-card-title {
  font-family: var(--font-ui); font-size: clamp(16px,1.8vw,20px);
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 12px; line-height: 1.3;
}
.wy-card-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; flex: 1;
}

/* ── Detail strips (alternating) ── */
.wy-detail { background: var(--bg); overflow: hidden; padding: 0; }
.wy-detail + .wy-detail { border-top: 1px solid var(--border-light); }
.wy-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max-w); margin: 0 auto;
  min-height: clamp(360px,42vw,520px);
}
.wy-detail-inner.reverse { direction: rtl; }
.wy-detail-inner.reverse > * { direction: ltr; }
.wy-detail-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: brightness(0.82);
  transition: filter 0.4s;
}
.wy-detail-inner:hover .wy-detail-img { filter: brightness(0.92); }
.wy-detail-content {
  padding: clamp(48px,6vw,88px) clamp(40px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.wy-detail-content .sec-eyebrow { margin-bottom: 14px; }
.wy-detail-content .sec-title { font-size: clamp(24px,2.8vw,36px); margin-bottom: 18px; }
.wy-detail-content p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 14px;
}
.wy-detail-content p:last-of-type { margin-bottom: 28px; }
.wy-detail-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.wy-detail-tag {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 2px;
  background: var(--purple-dim); color: var(--purple);
  border: 1px solid var(--purple-border);
}

/* ── Stats row ── */
.wy-stats { background: var(--purple); padding: clamp(56px,7vw,88px) var(--px); }
.wy-stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.wy-stat-block {
  background: rgba(75,46,140,0.5);
  padding: clamp(28px,4vw,48px) clamp(20px,3vw,36px);
  text-align: center;
  transition: background 0.25s;
}
.wy-stat-block:hover { background: rgba(75,46,140,0.75); }
.wy-stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px); font-weight: 700; line-height: 1;
  color: var(--teal-light); margin-bottom: 10px;
}
.wy-stat-label {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.wy-stat-desc {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-top: 6px; line-height: 1.5;
}

/* ── Commitment list ── */
.wy-commit { background: var(--bg-soft); }
.wy-commit-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px); align-items: start;
}
.wy-commit-text .sec-title { margin-bottom: 20px; }
.wy-commit-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; }
.wy-commit-list { display: flex; flex-direction: column; gap: 0; }
.wy-commit-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.wy-commit-item:last-child { border-bottom: none; }
.wy-commit-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
}
.wy-commit-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.6; }
.wy-commit-body {}
.wy-commit-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.wy-commit-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.wy-commit-right { padding-top: 8px; }
.wy-commit-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 20px; }
.wy-commit-quote {
  background: var(--bg); border: 1px solid var(--border-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
}
.wy-commit-quote p { font-size: 15px; color: var(--text-dark); line-height: 1.7; font-style: italic; margin-bottom: 10px; }
.wy-commit-quote cite { font-size: 12px; color: var(--text-muted); font-style: normal; font-family: var(--font-ui); font-weight: 500; letter-spacing: 0.04em; }

/* ── WHY US RESPONSIVE ── */
@media (max-width: 1024px) {
  .wy-stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .wy-intro-inner { grid-template-columns: 1fr; }
  .wy-cards { grid-template-columns: 1fr; }
  .wy-detail-inner { grid-template-columns: 1fr; min-height: auto; }
  .wy-detail-inner.reverse { direction: ltr; }
  .wy-detail-img { height: 260px; }
  .wy-commit-inner { grid-template-columns: 1fr; }
  .wy-commit-right { order: -1; }
}
@media (max-width: 640px) {
  .wy-stats-inner { grid-template-columns: 1fr 1fr; }
  .wy-cards { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   CAREERS PAGE  (.page-careers)
   ════════════════════════════════════════ */

.cr-layout {
  background: var(--bg-soft);
}
.cr-layout-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

/* ── Left: Job list tabs ── */
.cr-tabs {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg);
}
.cr-tab {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer; background: var(--bg);
  transition: background 0.2s;
  user-select: none;
}
.cr-tab:last-child { border-bottom: none; }
.cr-tab:hover { background: var(--bg-soft); }
.cr-tab.active {
  background: var(--purple);
}
.cr-tab-left { display: flex; flex-direction: column; gap: 4px; }
.cr-tab-title {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--text-dark); line-height: 1.3;
  transition: color 0.2s;
}
.cr-tab.active .cr-tab-title { color: #fff; }
.cr-tab-sub {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.cr-tab.active .cr-tab-sub { color: rgba(255,255,255,0.6); }
.cr-tab-arrow {
  font-size: 16px; color: var(--text-muted);
  transition: color 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.cr-tab.active .cr-tab-arrow { color: var(--teal-light); transform: rotate(90deg); }

/* ── Right: Job detail panels ── */
.cr-panels { display: flex; flex-direction: column; gap: 0; }
.cr-panel {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow 0.25s;
}
.cr-panel.active { box-shadow: 0 8px 32px rgba(75,46,140,0.1); border-color: var(--purple-border); }

/* Panel header (mobile toggle, hidden on desktop) */
.cr-panel-header {
  display: none;
  align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer;
  background: var(--bg); border-bottom: 1px solid var(--border-light);
}
.cr-panel-header-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); }
.cr-panel-header-arrow { font-size: 18px; color: var(--text-muted); transition: transform 0.3s; }
.cr-panel.active .cr-panel-header-arrow { transform: rotate(180deg); color: var(--purple); }

/* Panel body */
.cr-panel-body {
  display: none;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 3vw, 40px);
  animation: panelFadeIn 0.35s ease both;
}
.cr-panel.active .cr-panel-body { display: block; }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Panel content */
.cr-panel-img {
  width: 100%; aspect-ratio: 21/7; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 32px;
  filter: brightness(0.85);
}
.cr-role-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.cr-role-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 10px; }
.cr-role-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cr-role-tag {
  font-size: 11px; font-family: var(--font-ui); font-weight: 500;
  padding: 4px 12px; border-radius: 2px;
  background: var(--teal-dim); color: var(--teal-dark);
  border: 1px solid var(--teal-border);
}
.cr-role-tag.purple {
  background: var(--purple-dim); color: var(--purple);
  border-color: var(--purple-border);
}
.cr-apply-btn {
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 12px 28px; flex-shrink: 0;
  background: var(--purple); color: #fff;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.cr-apply-btn:hover { background: var(--purple-dark); transform: translateY(-2px); }
.cr-role-intro { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border-light); }

.cr-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cr-section-title {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.cr-section-title::after { content: ''; flex: 1; height: 1px; background: var(--teal-border); }
.cr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cr-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-body); line-height: 1.6;
}
.cr-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0; margin-top: 7px;
}

/* Offer highlights */
.cr-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.cr-offer-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-soft); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 14px 16px;
}
.cr-offer-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
}
.cr-offer-icon svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.cr-offer-text { font-size: 12px; color: var(--text-body); line-height: 1.55; }
.cr-offer-text strong { font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 2px; font-size: 13px; }

/* ── Intro strip above the job layout ── */
.cr-intro { background: var(--bg); }
.cr-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,96px); align-items: center; }
.cr-intro-text .sec-title { margin-bottom: 20px; }
.cr-intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.cr-intro-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); }

/* ── CAREERS RESPONSIVE ── */
@media (max-width: 1024px) {
  .cr-layout-inner { grid-template-columns: 1fr; }
  .cr-tabs { position: static; flex-direction: row; flex-wrap: wrap; border-radius: var(--radius-md); }
  .cr-tab { flex: 1; min-width: 160px; border-bottom: none; border-right: 1px solid var(--border-light); }
  .cr-tab:last-child { border-right: none; }
  .cr-tab-arrow { display: none; }
  .cr-sections { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .cr-intro-inner { grid-template-columns: 1fr; }
  .cr-tabs { flex-direction: column; }
  .cr-tab { border-right: none; border-bottom: 1px solid var(--border-light); }
  .cr-panel-header { display: flex; }
  .cr-panel-body { padding: 20px; }
  .cr-offer-grid { grid-template-columns: 1fr; }
  .cr-role-header { flex-direction: column; }
}
@media (max-width: 640px) {
  .cr-sections { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   NEWS LIST PAGE  (.page-news)
   ════════════════════════════════════════ */

/* ── Filter bar ── */
.nw-filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  padding: 0 var(--px);
  position: sticky; top: 64px; z-index: 100;
}
.nw-filter-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  overflow-x: auto; padding: 14px 0;
  scrollbar-width: none;
}
.nw-filter-inner::-webkit-scrollbar { display: none; }
.nw-filter-btn {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; white-space: nowrap;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-light); cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
}
.nw-filter-btn:hover { color: var(--purple); border-color: var(--purple-border); }
.nw-filter-btn.active {
  background: var(--purple); color: #fff; border-color: var(--purple);
}

/* ── Featured (hero) article ── */
.nw-featured { background: var(--bg); padding-bottom: 0; }
.nw-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow 0.25s;
  cursor: pointer;
}
.nw-featured-card:hover { box-shadow: 0 12px 48px rgba(75,46,140,0.1); }
.nw-featured-img-wrap { position: relative; overflow: hidden; }
.nw-featured-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85); transition: filter 0.35s, transform 0.45s;
  display: block; min-height: 380px;
}
.nw-featured-card:hover .nw-featured-img { filter: brightness(0.95); transform: scale(1.03); }
.nw-featured-label {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal); color: #fff;
  padding: 5px 13px; border-radius: 2px;
}
.nw-featured-body {
  padding: clamp(32px,4vw,56px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.nw-featured-cat {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.nw-featured-title {
  font-family: var(--font-display);
  font-size: clamp(26px,3vw,40px); font-weight: 700;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 16px;
}
.nw-featured-excerpt {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px;
}
.nw-featured-meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-ui); font-size: 12px; color: var(--text-muted);
}
.nw-featured-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-mid); }
.nw-read-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--purple); border-bottom: 1px solid var(--purple-border);
  padding-bottom: 2px; transition: gap 0.2s, border-color 0.2s;
}
.nw-featured-card:hover .nw-read-link { gap: 10px; border-color: var(--purple); }

/* ── News grid ── */
.nw-grid-section { background: var(--bg-soft); }
.nw-grid-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: clamp(32px,4vw,48px); flex-wrap: wrap; }
.nw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.nw-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; cursor: pointer;
}
.nw-card:hover { border-color: var(--purple-border); box-shadow: 0 8px 28px rgba(75,46,140,0.08); transform: translateY(-3px); }
.nw-card-img-wrap { position: relative; overflow: hidden; }
.nw-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.88); transition: filter 0.3s, transform 0.4s; }
.nw-card:hover .nw-card-img { filter: brightness(1); transform: scale(1.04); }
.nw-card-cat-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(13,8,32,0.75); color: var(--teal-light);
  backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 2px;
}
.nw-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.nw-card-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.nw-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.nw-card-footer { display: flex; align-items: center; justify-content: space-between; }
.nw-card-date { font-family: var(--font-ui); font-size: 11px; color: var(--text-muted); }
.nw-card-arrow { font-size: 16px; color: var(--text-muted); transition: color 0.2s, transform 0.2s; }
.nw-card:hover .nw-card-arrow { color: var(--purple); transform: translateX(3px); }

/* ── Pagination ── */
.nw-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.nw-page-btn {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border-light);
  background: var(--bg); color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.nw-page-btn:hover { border-color: var(--purple-border); color: var(--purple); }
.nw-page-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.nw-page-btn.wide { width: auto; padding: 0 14px; }

/* ── NEWS LIST RESPONSIVE ── */
@media (max-width: 1024px) { .nw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .nw-featured-card { grid-template-columns: 1fr; }
  .nw-featured-img { min-height: 240px; }
}
@media (max-width: 640px) { .nw-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════
   NEWS DETAIL PAGE  (.page-news-detail)
   ════════════════════════════════════════ */

.nd-layout {
  background: var(--bg);
}
.nd-layout-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ── Article ── */
.nd-article {}
.nd-article-hero {
  width: 100%; aspect-ratio: 16/6; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 36px;
  filter: brightness(0.9);
}
.nd-article-cat {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.nd-article-title {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,52px); font-weight: 700;
  color: var(--text-dark); line-height: 1.05; margin-bottom: 20px;
}
.nd-article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 12px; color: var(--text-muted);
  padding-bottom: 28px; border-bottom: 1px solid var(--border-light); margin-bottom: 36px;
}
.nd-article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-mid); }
.nd-article-meta .tag {
  background: var(--purple-dim); color: var(--purple);
  border: 1px solid var(--purple-border); border-radius: 2px;
  padding: 3px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
}

/* Article body typography */
.nd-body { font-size: 16px; color: var(--text-body); line-height: 1.9; }
.nd-body p { margin-bottom: 22px; }
.nd-body h2 {
  font-family: var(--font-display); font-size: clamp(22px,2.5vw,30px); font-weight: 700;
  color: var(--text-dark); margin: 40px 0 16px; line-height: 1.1;
}
.nd-body h3 {
  font-family: var(--font-ui); font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin: 32px 0 12px;
}
.nd-body ul, .nd-body ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px;
}
.nd-body ul li, .nd-body ol li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-body); line-height: 1.7;
}
.nd-body ul li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 8px;
}
.nd-body ol { counter-reset: nd-ol; }
.nd-body ol li { counter-increment: nd-ol; }
.nd-body ol li::before {
  content: counter(nd-ol);
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--purple); flex-shrink: 0; min-width: 24px; line-height: 1.5;
}
.nd-body blockquote {
  border-left: 3px solid var(--teal); margin: 32px 0;
  padding: 20px 28px;
  background: var(--bg-soft); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 17px; font-style: italic; color: var(--text-dark); line-height: 1.75;
}
.nd-body blockquote cite { display: block; margin-top: 10px; font-size: 13px; font-style: normal; color: var(--text-muted); font-family: var(--font-ui); font-weight: 500; }
.nd-body .nd-img-inline { width: 100%; border-radius: var(--radius-md); margin: 28px 0; filter: brightness(0.88); }
.nd-body .nd-img-caption { font-size: 12px; color: var(--text-muted); font-family: var(--font-ui); text-align: center; margin-top: -20px; margin-bottom: 28px; }

/* Article footer */
.nd-article-footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.nd-share { display: flex; align-items: center; gap: 10px; }
.nd-share-label { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.nd-share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-light); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--text-muted);
  font-size: 13px;
}
.nd-share-btn:hover { border-color: var(--purple-border); color: var(--purple); background: var(--purple-dim); }
.nd-back-link {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--teal-border); padding-bottom: 2px;
  transition: gap 0.2s;
}
.nd-back-link:hover { gap: 10px; }

/* ── Sidebar ── */
.nd-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.nd-sidebar-box {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
}
.nd-sidebar-head {
  padding: 16px 20px; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
}
.nd-sidebar-head::before {
  content: ''; width: 3px; height: 16px;
  background: linear-gradient(to bottom, var(--purple), var(--teal));
  border-radius: 2px; flex-shrink: 0;
}
.nd-sidebar-head h3 {
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark);
}
.nd-sidebar-body { padding: 16px 20px; }

/* Related posts */
.nd-related-list { display: flex; flex-direction: column; gap: 0; }
.nd-related-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
  cursor: pointer; transition: opacity 0.2s;
}
.nd-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.nd-related-item:hover { opacity: 0.75; }
.nd-related-img { width: 68px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; filter: brightness(0.85); }
.nd-related-text {}
.nd-related-cat { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.nd-related-title { font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--text-dark); line-height: 1.4; }

/* Category list in sidebar */
.nd-cat-list { display: flex; flex-direction: column; gap: 4px; }
.nd-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-size: 13px; color: var(--text-body);
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.nd-cat-item:hover { background: var(--purple-dim); color: var(--purple); }
.nd-cat-item.active { background: var(--purple); color: #fff; }
.nd-cat-count { font-size: 11px; opacity: 0.6; }

/* ── NEWS DETAIL RESPONSIVE ── */
@media (max-width: 1024px) {
  .nd-layout-inner { grid-template-columns: 1fr; }
  .nd-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .nd-sidebar-box { flex: 1; min-width: 260px; }
}
@media (max-width: 640px) {
  .nd-sidebar { flex-direction: column; }
  .nd-sidebar-box { min-width: unset; }
}

/* ════════════════════════════════════════
   CONTACT PAGE  (.page-contact)
   ════════════════════════════════════════ */

.ct-layout { background: var(--bg); }
.ct-layout-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: start;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Left sidebar: address + info ── */
.ct-sidebar {
  background: var(--purple);
  padding: clamp(36px,5vw,56px) clamp(28px,4vw,44px);
  display: flex; flex-direction: column; gap: 32px;
  min-height: 100%;
}
.ct-sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,52px); font-weight: 700;
  color: #fff; line-height: 1.05;
}
.ct-info-block { display: flex; flex-direction: column; gap: 6px; }
.ct-info-label {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.ct-info-line {
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.65;
}
.ct-info-link {
  font-size: 14px; color: var(--teal-light); line-height: 1.65;
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.ct-info-link:hover { color: #fff; }
.ct-info-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.ct-divider { height: 1px; background: rgba(255,255,255,0.12); }
.ct-socials { display: flex; gap: 10px; }
.ct-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-ui);
}
.ct-social-btn:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.4); }

/* ── Right content ── */
.ct-content {
  padding: clamp(36px,5vw,56px) clamp(28px,4vw,48px);
  display: flex; flex-direction: column; gap: 48px;
  background: var(--bg);
}

/* Primary contact card */
.ct-contact-section {}
.ct-section-title {
  font-family: var(--font-display); font-size: clamp(22px,2.5vw,30px);
  font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.ct-section-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.ct-person-card {
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; grid-template-columns: 200px 1fr;
}
.ct-person-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; filter: brightness(0.92); }
.ct-person-body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ct-person-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ct-person-role {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 20px;
}
.ct-person-links { display: flex; flex-direction: column; gap: 8px; }
.ct-person-link {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-body); transition: color 0.2s;
}
.ct-person-link:hover { color: var(--purple); }
.ct-person-link svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.ct-general-email {
  margin-top: 14px; padding: 12px 16px;
  background: var(--bg-soft); border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-body);
}
.ct-general-email .lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); flex-shrink: 0;
}
.ct-general-email a { color: var(--teal-dark); transition: color 0.2s; }
.ct-general-email a:hover { color: var(--purple); }

/* Divider between sections */
.ct-section-divider { height: 1px; background: var(--border-light); }

/* Contact form */
.ct-form-section {}
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; color: var(--text-dark);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
  background: var(--bg-soft); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--purple-border);
  box-shadow: 0 0 0 3px rgba(75,46,140,0.08);
}
.ct-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--text-muted); }
.ct-form-note { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.ct-submit {
  align-self: flex-start;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 36px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.ct-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ── Info strips below the main card ── */
.ct-strips { background: var(--bg-soft); }
.ct-strips-inner {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ct-strip-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px);
  transition: box-shadow 0.25s, transform 0.25s;
}
.ct-strip-card:hover { box-shadow: 0 8px 28px rgba(75,46,140,0.08); transform: translateY(-3px); }
.ct-strip-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ct-strip-icon svg { width: 20px; height: 20px; stroke: var(--purple); fill: none; stroke-width: 1.6; }
.ct-strip-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.ct-strip-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.ct-strip-link {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.ct-strip-card:hover .ct-strip-link { gap: 9px; }

/* Form success state */
.ct-success {
  display: none; text-align: center; padding: 40px 20px;
  flex-direction: column; align-items: center; gap: 12px;
}
.ct-success.show { display: flex; }
.ct-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
}
.ct-success-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 2; }
.ct-success h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-dark); }
.ct-success p { font-size: 14px; color: var(--text-muted); max-width: 360px; line-height: 1.7; }

/* ── CONTACT RESPONSIVE ── */
@media (max-width: 1024px) {
  .ct-layout-inner { grid-template-columns: 280px 1fr; }
  .ct-strips-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ct-layout-inner { grid-template-columns: 1fr; }
  .ct-sidebar { min-height: auto; }
  .ct-person-card { grid-template-columns: 160px 1fr; }
  .ct-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-strips-inner { grid-template-columns: 1fr; }
  .ct-person-card { grid-template-columns: 1fr; }
  .ct-person-img { height: 220px; }
  .ct-submit { width: 100%; text-align: center; }
}