@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Geologica:wght@700;800&display=swap');

/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  --navy:       #0a2d5e;
  --navy-deep:  #071a3e;
  --blue:       #1a6fd4;
  --blue-hover: #155fba;
  --blue-light: #4da6ff;
  --blue-pale:  #eaf3ff;
  --bg:         #f4f7fb;
  --bg-dark:    #060f1c;
  --white:      #ffffff;
  --text:       #18253a;
  --text-muted: #587a9b;
  --text-light: #8aaecc;
  --border:     #dce9f5;

  --section-pad: 96px 0;

  --shadow-xs: 0 1px 3px rgba(10,45,94,0.05);
  --shadow-sm: 0 2px 8px rgba(10,45,94,0.07), 0 1px 2px rgba(10,45,94,0.04);
  --shadow-md: 0 4px 18px rgba(10,45,94,0.09), 0 2px 6px rgba(10,45,94,0.04);
  --shadow-lg: 0 10px 36px rgba(10,45,94,0.12), 0 4px 10px rgba(10,45,94,0.06);
  --shadow-blue: 0 4px 20px rgba(26,111,212,0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.4px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Focus: accessible but styled */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(26,111,212,0.12) !important;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,45,94,0.97);
  border-bottom: 1px solid rgba(26,111,212,0.18);
  transition: background 0.35s, box-shadow 0.35s,
              transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(7,26,62,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.22);
  border-bottom-color: rgba(26,111,212,0.12);
}

header.hidden {
  transform: translateY(-100%);
}

/* compensate for fixed header */
body { padding-top: 68px; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--blue-light); }

.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 1px;
}

nav { display: flex; align-items: center; gap: 2px; }

nav a {
  color: rgba(255,255,255,0.68);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav a:hover { color: white; background: rgba(255,255,255,0.08); }
nav a.active { color: white; background: rgba(26,111,212,0.2); }

.btn-header {
  background: var(--blue) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.22s !important;
  margin-left: 10px;
  box-shadow: 0 2px 10px rgba(26,111,212,0.32) !important;
}

.btn-header:hover {
  background: var(--blue-hover) !important;
  box-shadow: 0 4px 16px rgba(26,111,212,0.44) !important;
  transform: translateY(-1px) !important;
}

.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  letter-spacing: -0.1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1a75e0 0%, #1254b4 100%);
  color: white;
  box-shadow: 0 3px 14px rgba(26,111,212,0.32), 0 1px 3px rgba(26,111,212,0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d80f0 0%, #1a70e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,212,0.42), 0 2px 6px rgba(26,111,212,0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-blue-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(26,111,212,0.42);
}

.btn-blue-outline:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 104px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(77,166,255,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* Large glow orb — top right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(26,111,212,0.22) 0%, transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,166,255,0.1);
  border: 1px solid rgba(77,166,255,0.22);
  color: var(--blue-light);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px 6px 9px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-light);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 52px;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1.8px;
  line-height: 1.09;
  font-weight: 700;
}

.hero h1 span { color: var(--blue-light); }

.hero > .hero-grid > div > p {
  color: rgba(255,255,255,0.62);
  font-size: 17px;
  line-height: 1.74;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 52px;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,166,255,0.45), transparent);
}

.hero-stat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(77,166,255,0.18);
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero-stat-num span { color: var(--blue-light); }

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.45;
  font-weight: 500;
}

/* Hero visual (right column cards) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 396px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(77,166,255,0.24);
  transform: translateX(-6px);
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, #1254b4 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  box-shadow: 0 4px 12px rgba(26,111,212,0.38);
}

.hero-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: white;
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  margin: 0;
  line-height: 1.56;
}

.hero-card-mini {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: var(--section-pad); }

.section-alt { background: var(--bg); }

.section-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(77,166,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.section-dark > .container { position: relative; z-index: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.9px;
  font-weight: 700;
  line-height: 1.14;
}

.section-title.white { color: white; }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.74;
}

.section-desc.white { color: rgba(255,255,255,0.58); }

.section-header { margin-bottom: 56px; }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
              border-color 0.3s;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,111,212,0.32);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.card:hover .card-icon { transform: scale(1.08); }

.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

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

/* ─────────────────────────────────────────
   STEPS
───────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  position: relative;
  padding-bottom: 32px;
}

.step:last-child { padding-bottom: 0; }

.step-left { display: flex; flex-direction: column; align-items: center; }

.step-num {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue) 0%, #1254b4 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,111,212,0.32);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(26,111,212,0.38) 0%, rgba(26,111,212,0.05) 100%);
  margin-top: 8px;
  border-radius: 2px;
}

.step-body { padding-top: 12px; }

.step-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 9px;
  font-weight: 700;
}

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

/* ─────────────────────────────────────────
   FORM SECTION
───────────────────────────────────────── */
.form-section {
  background: linear-gradient(160deg, #0c3068 0%, #071a3e 100%);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(77,166,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.form-section::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 420px;
  background: radial-gradient(ellipse, rgba(26,111,212,0.18), transparent 70%);
  pointer-events: none;
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}

.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.24); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(77,166,255,0.65) !important;
  background: rgba(255,255,255,0.09) !important;
  box-shadow: 0 0 0 3px rgba(77,166,255,0.12) !important;
}

.form-group textarea { resize: vertical; min-height: 104px; }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 14px;
  line-height: 1.6;
}

.form-note a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 2px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #05101d;
  color: white;
  padding: 68px 0 32px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,111,212,0.5), rgba(77,166,255,0.35), rgba(26,111,212,0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.36);
  margin-top: 18px;
  line-height: 1.72;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(255,255,255,0.32);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  padding: 5px 0;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.26);
}

.footer-bottom a { color: rgba(255,255,255,0.36); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.72); }

/* ─────────────────────────────────────────
   CATALOG PAGE
───────────────────────────────────────── */
.catalog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-item:first-child { padding-top: 0; }
.catalog-item:last-child { border-bottom: none; }
.catalog-item.reverse { direction: rtl; }
.catalog-item.reverse > * { direction: ltr; }

.catalog-img {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f2fb 100%);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.catalog-img:hover {
  transform: scale(1.012);
  box-shadow: var(--shadow-md);
}

.catalog-img svg { opacity: 0.72; }

.catalog-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 18px;
}

.catalog-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.catalog-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.76;
  margin-bottom: 16px;
}

.catalog-list {
  list-style: none;
  margin-bottom: 30px;
}

.catalog-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  font-weight: 500;
}

.catalog-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(77,166,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,111,212,0.18) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  font-weight: 700;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  line-height: 1.74;
}

.page-hero .hero-btns { margin-top: 30px; }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.78); }

.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.breadcrumb .current { color: rgba(255,255,255,0.62); }

/* ─────────────────────────────────────────
   FEATURE CARDS (dark bg)
───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(26,111,212,0.38);
  transform: translateY(-3px);
}

.feature-card:hover::after { opacity: 1; }

.feature-card .card-icon {
  background: rgba(26,111,212,0.22);
  margin-bottom: 18px;
}

.feature-card:hover .card-icon { transform: none; }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: white;
  margin-bottom: 9px;
  font-weight: 600;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  line-height: 1.62;
}

/* ─────────────────────────────────────────
   VACANCY
───────────────────────────────────────── */
.vacancy-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vacancy-card:hover {
  border-color: rgba(26,111,212,0.3);
  box-shadow: var(--shadow-md);
}

.vacancy-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 700;
}

.vacancy-block { margin-bottom: 22px; }

.vacancy-block h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.vacancy-block ul li {
  font-size: 14px;
  color: var(--text);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.66;
  font-weight: 500;
}

.vacancy-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
}

/* ─────────────────────────────────────────
   CONTACTS
───────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.contact-item:hover .contact-icon { transform: scale(1.08); }

.contact-item-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.contact-item-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact-item-val a { color: var(--blue); }
.contact-item-val a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ─────────────────────────────────────────
   POLICY
───────────────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 14px;
  font-weight: 700;
}

.policy-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul { margin: 10px 0 18px 20px; }

.policy-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 3px 0;
  list-style: disc;
}

/* ─────────────────────────────────────────
   HERO PHOTO (index.html — right column)
───────────────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.28);
}

.hero-photo {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,26,62,0.92) 0%, rgba(7,26,62,0.45) 55%, transparent 100%);
  padding: 44px 22px 22px;
}

.hero-photo-badge {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-photo-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,111,212,0.8);
  border: 1px solid rgba(77,166,255,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-photo-badge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.hero-photo-badge-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   DIRECTION CARDS WITH PHOTOS (index.html)
───────────────────────────────────────── */
.card-with-img {
  padding: 0;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 178px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-with-img:hover .card-img img { transform: scale(1.07); }

.card-content {
  padding: 22px 26px 26px;
}

/* card-icon, h3, p, a inside .card-content inherit existing .card rules */

/* ─────────────────────────────────────────
   PAGE HERO WITH RIGHT PHOTO
───────────────────────────────────────── */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero-visual { position: relative; }

.page-hero-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
}

/* ─────────────────────────────────────────
   SECTION PHOTO + TEXT LAYOUT
───────────────────────────────────────── */
.section-img-col {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.section-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.section-img-col:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   HERO LOAD ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.72s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up-delay-1 {
  opacity: 0;
  animation: fadeUp 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.12s forwards;
}

.fade-up-delay-2 {
  opacity: 0;
  animation: fadeUp 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.24s forwards;
}

.fade-up-delay-3 {
  opacity: 0;
  animation: fadeUp 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.38s forwards;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1     { font-size: 44px; }
  .section-title { font-size: 32px; }
  .hero-grid   { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .cards-grid   { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .catalog-item { grid-template-columns: 1fr; gap: 36px; }
  .catalog-item.reverse { direction: ltr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: 60px 0; }

  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(7,26,62,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 3px;
  }
  nav.open a { padding: 12px 16px; font-size: 15px; }

  .burger { display: flex; }
  header { position: sticky; top: 0; }

  .hero { padding: 72px 0 60px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.8px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: 26px; }
  .page-hero h1  { font-size: 28px; }

  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

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

  .catalog-item { padding: 52px 0; }

  .vacancy-card { padding: 24px; }
  .contact-info-card { padding: 24px; }

  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}
