:root {
  --primary: #0D3B66;
  --primary-dark: #0A2E52;
  --primary-mid: #1A5FAC;
  --primary-deep: #163E6C;
  --accent: #C1272D;
  --accent-hover: #D93A40;
  --accent-soft: rgba(193, 39, 45, 0.15);
  --bg: #F7F8FA;
  --surface: #fff;
  --text: #4A5568;
  --text-muted: #6B7A8D;
  --border: #E8ECF1;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: clamp(64px, 10vw, 80px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 4px 16px rgba(13, 59, 102, 0.06);
  --shadow-md: 0 12px 40px rgba(13, 59, 102, 0.1);
  --focus-ring: 0 0 0 3px rgba(13, 59, 102, 0.2);
  --transition: 0.2s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img, video, svg { max-width: 100%; height: auto; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* TOP BAR */
.top-bar {
  width: 100%;
  background: var(--primary-dark);
  padding: 8px 0;
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a { color: rgba(255, 255, 255, 0.75); }
.top-bar a:hover { color: #fff; }

.top-bar span {
  font-size: clamp(11px, 2.5vw, 12px);
  color: rgba(255, 255, 255, 0.7);
}

.top-bar .sep { color: rgba(255, 255, 255, 0.35); user-select: none; }

/* HEADER */
.site-header {
  width: 100%;
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}

.logo-icon {
  width: clamp(44px, 8vw, 52px);
  height: clamp(44px, 8vw, 52px);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 3vw, 18px);
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-text-sub {
  font-weight: 500;
  font-size: clamp(9px, 2vw, 11px);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.desktop-nav a span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.desktop-nav a:hover span { color: var(--primary); }
.desktop-nav a span.active {
  font-weight: 600;
  color: var(--primary);
  background: rgba(13, 59, 102, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-mid);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 82, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

body.nav-open .mobile-nav { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
  background: var(--bg);
  color: var(--primary);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 16px;
}

/* HERO */
.hero {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, var(--primary-deep) 100%);
  position: relative;
  overflow: hidden;
}

.hero-deco1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(193, 39, 45, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: radial-gradient(circle, rgba(26, 95, 172, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.03) 59px, rgba(255, 255, 255, 0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.03) 59px, rgba(255, 255, 255, 0.03) 60px);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) var(--gutter) clamp(56px, 9vw, 90px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-content { animation: fadeUp 0.8s ease-out both; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(193, 39, 45, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #FF6B6B;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--accent);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-red:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 39, 45, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 28px);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 6px;
}

.stat-num.pink { color: #FF8E8E; }
.stat-num.blue { color: #7EB8FF; }

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* SECTIONS */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-desc {
  font-size: clamp(15px, 2.5vw, 16px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header-center {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.results-section-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.results-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  line-height: 1.15;
}

/* SERVICES */
.services {
  width: 100%;
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0;
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 32px);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* RESULTS */
.results {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  padding: clamp(48px, 7vw, 72px) 0;
  position: relative;
  overflow: hidden;
}

.results-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.results-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.result-item { text-align: center; }

.result-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.result-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ABOUT */
.about {
  width: 100%;
  background: var(--bg);
  padding: clamp(48px, 8vw, 80px) 0;
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about > div > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.value-icon {
  min-width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--border), #D8DEE6);
  border-radius: var(--radius-xl);
  min-height: clamp(240px, 40vw, 480px);
  height: auto;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder .stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(13, 59, 102, 0.03) 20px, rgba(13, 59, 102, 0.03) 40px);
}

/* NEWS */
.news {
  width: 100%;
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0;
}

.news-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 5vw, 48px);
}

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

.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.news-thumb {
  height: clamp(160px, 25vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-cover-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.news-body {
  padding: clamp(18px, 3vw, 24px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 12px;
  color: #9AA5B4;
  margin-bottom: 10px;
}

.news-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(13, 59, 102, 0.04);
  color: var(--primary);
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

/* CTA */
.cta {
  width: 100%;
  background: var(--bg);
  padding: clamp(48px, 8vw, 80px) 0;
}

.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-box > div > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cta-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  outline: none;
}

.cta-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.cta-form .btn-red {
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
}

.cta-forgot {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  margin-top: 4px;
}

.cta-forgot:hover { color: rgba(255, 255, 255, 0.85); }

/* FOOTER */
.site-footer {
  width: 100%;
  background: var(--primary-dark);
  padding: clamp(40px, 6vw, 64px) 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.footer-logo-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
  text-decoration: none;
}

.social-btn svg {
  display: block;
  flex-shrink: 0;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-banners {
  padding: 32px 24px 0;
  background: var(--bg, #f5f8fb);
}

.home-banners-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.home-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 102, 0.08);
}

.home-banner-media {
  min-height: 140px;
  background: linear-gradient(135deg, #0D3B66, #1A5FAC);
}

.home-banner-body {
  padding: 20px 24px 20px 0;
}

.home-banner-body h3 {
  margin: 0 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0D3B66;
}

.home-banner-body p {
  margin: 0 0 16px;
  color: #5b6b7c;
}

.partners {
  padding: 72px 24px;
  background: #fff;
}

.partners-inner { max-width: 1120px; margin: 0 auto; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}

.partner-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(13, 59, 102, 0.08);
  border-radius: 12px;
  background: #f8fafc;
}

.partner-card img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.partner-card a {
  color: #0D3B66;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .home-banner-card { grid-template-columns: 1fr; }
  .home-banner-body { padding: 16px 20px 20px; }
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: color 0.2s;
  min-height: 24px;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-bottom {
  padding: 20px 0 24px;
  text-align: center;
}

.footer-bottom span {
  font-size: clamp(11px, 2.5vw, 13px);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  display: inline-block;
  max-width: 720px;
}

/* INNER PAGES */
.page-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-deep) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) var(--gutter) clamp(40px, 6vw, 56px);
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  color: #FF8E8E;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: clamp(15px, 2.5vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.6;
}

.page-content {
  width: 100%;
  background: var(--surface);
  padding: clamp(40px, 6vw, 56px) 0 clamp(56px, 8vw, 80px);
}

.page-content-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-content-inner.narrow { max-width: 900px; }
.page-content-inner.medium { max-width: 1040px; }

.content-prose {
  font-size: clamp(15px, 2.5vw, 16px);
  color: var(--text);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.content-prose h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--primary);
  margin: 32px 0 12px;
}

.content-prose h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--primary);
  margin: 24px 0 8px;
}

.content-prose p { margin-bottom: 16px; }
.content-prose ul, .content-prose ol { margin: 0 0 16px 24px; }
.content-prose li { margin-bottom: 8px; }

.content-prose img,
.content-prose video,
.content-prose iframe {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.content-prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.content-prose pre {
  overflow-x: auto;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

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

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 24px);
}

.value-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 24px);
  transition: all 0.3s;
  height: 100%;
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F4FD, #D0E8F9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 16px;
}

.team-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.publication-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.publication-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(18px, 3vw, 24px) clamp(20px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: all 0.25s;
}

.publication-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.publication-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.publication-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #E8F4FD;
  color: var(--primary);
}

.publication-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.faq-item summary {
  padding: 18px 22px;
  min-height: 56px;
  display: flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2.5vw, 16px);
  color: var(--primary);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.faq-answer {
  padding: 18px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 32px);
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 28px);
  color: #fff;
}

.contact-info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-item strong {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.portal-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 28px);
}

.portal-form .field { margin-bottom: 18px; }

.portal-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.portal-form input,
.portal-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.portal-form input:focus,
.portal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

.portal-form .form-error {
  color: var(--accent);
  font-size: 13px;
  margin-top: 12px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  margin: 0;
  flex: 0 0 16px;
  border: 1.5px solid var(--border-strong, #9aa8b8);
  border-radius: 4px;
  background: var(--surface, #fff);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3.1 6-6.3' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.form-check-input:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 45%, transparent);
  outline-offset: 2px;
}

.form-check-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}

.empty-state-box {
  text-align: center;
  padding: clamp(32px, 6vw, 48px) 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  background: var(--bg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }

  .header-cta {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-inner,
  .about-inner,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }

  .header-cta span.desktop-only { display: none; }

  .services-grid,
  .news-grid,
  .results-grid,
  .footer-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .publication-item {
    flex-direction: column;
    align-items: stretch;
  }

  .publication-item .btn-outline {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .header-cta {
    display: none;
  }

  .top-bar .sep {
    display: none;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 8px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-red,
  .hero-buttons .btn-ghost {
    width: 100%;
  }

  .cta-box {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
