/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:    #2d3870;
  --color-bg:         #ffffff;
  --color-text:       #111111;
  --color-muted:      #555555;
  --color-overlay-25: rgba(45, 56, 112, 0.25);
  --color-overlay-50: rgba(45, 56, 112, 0.50);

  --font-base:        'DM Sans', sans-serif;
  --font-weight-body: 400;
  --font-weight-bold: 700;

  --letter-spacing-ui: 1.5px;

  --radius-btn:  30px;
  --max-width:   1200px;
  --header-h:    72px;

  --transition:  0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: var(--font-weight-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-ui);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-base);
  font-weight: var(--font-weight-bold);
  font-size: 15px;
  letter-spacing: var(--letter-spacing-ui);
  cursor: pointer;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  border: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 6px 24px var(--color-overlay-50);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 24px var(--color-overlay-25);
}

/* For use on dark/blue backgrounds */
.btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  display: flex;
  align-items: center;
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links .btn {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: var(--letter-spacing-ui);
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-dropdown > a:hover,
.nav-dropdown > a.active {
  text-decoration: none;
}

.nav-dropdown > a:hover span,
.nav-dropdown > a.active span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 12px;
  display: inline-block;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 260px;
  padding: 8px 0;
  z-index: 1100;
}

/* Bridge gap so mouse can travel from trigger to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--color-text);
}

.dropdown-menu a:hover {
  background: #f5f6fa;
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #111111;
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: var(--letter-spacing-ui);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  color: #a0a8d0;
}

/* ============================================================
   PAGE OFFSET FOR FIXED HEADER
   ============================================================ */
main {
  padding-top: var(--header-h);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-primary);
  color: #fff;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-ui);
  line-height: 1.15;
  margin-bottom: 36px;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.88;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-link {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: var(--letter-spacing-ui);
  opacity: 0.85;
  transition: opacity var(--transition);
  align-self: center;
}

.hero-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}


/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: #f7f8fc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e8eaf0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 40px var(--color-overlay-25);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.service-card .service-abbr {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0.55;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================================
   TEAM
   ============================================================ */
#team {
  text-align: center;
}

.team-stat {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
}

#team p {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   WHY US
   ============================================================ */
#why {
  background: #f7f8fc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 24px 24px;
  border-left: 4px solid var(--color-primary);
}

.why-item h4 {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.why-item p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}

#newsletter .section-title {
  color: #fff;
}

#newsletter p {
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 20px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 16px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: min(220px, 100%);
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: none;
  font-family: var(--font-base);
  font-size: 15px;
  outline: none;
}

.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

#newsletter .newsletter-disclaimer {
  font-size: 12px;
  opacity: 0.6;
}

/* ============================================================
   PARTNERS
   ============================================================ */
#partners .section-title {
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 32px 8px;
  margin-top: 36px;
}

.partners-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-grid--inner {
  grid-template-columns: repeat(4, auto);
}

@media (max-width: 640px) {
  .partners-grid--inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
}

.partner-logo {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}

.partner-logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

.partner-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-muted);
  opacity: 0.65;
  transition: opacity var(--transition), color var(--transition);
}

.partner-name:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contacts .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--color-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #dde0ed;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-overlay-25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-status {
  font-size: 14px;
  color: var(--color-muted);
}

.contact-form .form-status.success { color: #1a7a4a; }
.contact-form .form-status.error   { color: #c0392b; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 36px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand {
  font-weight: var(--font-weight-bold);
  font-size: 16px;
  letter-spacing: var(--letter-spacing-ui);
  color: #fff;
}

.footer-brand a {
  color: #fff;
  transition: opacity var(--transition);
}

.footer-brand a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-brand p {
  font-weight: 400;
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.65;
  letter-spacing: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity var(--transition);
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links-ext {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-links-ext a {
  opacity: 0.75;
  transition: opacity var(--transition);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-links-ext a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.5;
  text-align: center;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-ui);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section {
  padding: 56px 0;
}

.content-section:nth-child(even) {
  background: #f7f8fc;
}

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.content-2col strong {
  color: var(--color-primary);
}

.content-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.content-section p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  margin-bottom: 16px;
}

.content-section ul li {
  color: var(--color-muted);
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}

.content-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.feature-item {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 20px 20px;
  border: 1px solid #e8eaf0;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Case Study Cards --- */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.case-study-card {
  position: relative;
  display: block;
  background: var(--color-bg);
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  padding: 20px 22px 20px 22px;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}

.case-study-card:hover {
  box-shadow: 0 4px 24px var(--color-overlay-25);
  transform: translateY(-3px);
}

.case-study-card .cs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #eef0fa;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.case-study-card .cs-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
  margin: 0;
  padding-right: 20px;
}

.case-study-card .cs-arrow {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 14px;
  color: var(--color-primary);
  opacity: 0.45;
}

/* ============================================================
   INLINE CONTENT LINKS
   ============================================================ */
.content-section p a,
.section p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-item p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 8px;
}

/* ============================================================
   PUBLICATIONS
   ============================================================ */
.pub-year-heading {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-ui);
  margin: 40px 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

.pub-year-heading:first-child {
  margin-top: 0;
}

.pub-type-heading {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--color-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0 12px;
}

.pub-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.pub-filter button {
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-ui);
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.pub-filter button:hover,
.pub-filter button.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 24px var(--color-overlay-25);
}

.pub-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pub-item {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  padding: 20px 24px;
  transition: box-shadow var(--transition);
}

.pub-item:hover {
  box-shadow: 0 4px 24px var(--color-overlay-25);
}

.pub-item .pub-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #eef0fa;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.pub-item h3 {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.pub-item .pub-meta {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.pub-item .pub-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pub-item .pub-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #contacts .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .hero { padding: 44px 0; text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
}
