*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand blues from logo */
  --blue-dark:  #1a3a5c;
  --blue-mid:   #1e5799;
  --blue:       #2176c7;
  --blue-light: #3d9be9;
  --blue-pale:  #deeef9;
  --blue-bg:    #f0f6fb;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-100:   #eef1f5;
  --gray-200:   #d8dfe8;
  --gray-400:   #8fa4bc;
  --gray-600:   #4a6075;
  --gray-800:   #1e2d3d;
  --black:      #0f1922;

  /* Accent — same electric blue */
  --accent:     #2176c7;
  --accent-hover: #1a5fa0;

  --border:     rgba(33,118,199,0.14);
  --border-gray: #d8dfe8;
  --radius:     4px;
  --radius-lg:  8px;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════════════════
   LOGO SVG COMPONENT (inline)
══════════════════════════════ */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  max-width: 170px;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(33,118,199,0.08);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--blue);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  border-radius: var(--radius);
  color: var(--gray-800);
  cursor: pointer;
  padding: 6px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(15,25,34,0.72), rgba(15,25,34,0.80)),
    url('bg_photo2.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 100px;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--blue-light);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-accent { color: var(--blue-light); }

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--blue);
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-ghost-white {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost-white:hover { color: var(--white); }

.arrow-circle {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--blue-dark);
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 30px 0 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-num {
  display: flex;
  align-items: center;
  min-height: 42px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--blue-light);
  letter-spacing: -0.02em;
}

.stat-num svg { display: block; }

.stat-num sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 600;
}

.stat-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
section { padding: 96px 60px; }

.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
}

.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
}

/* ══════════════════════════════
   TEENUSED
══════════════════════════════ */
#teenused { background: var(--off-white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33,118,199,0.1);
  border-color: rgba(33,118,199,0.2);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  color: var(--blue);
  margin-bottom: 24px;
}

.service-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.65;
}

.service-list-wrap {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.service-list-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  white-space: nowrap;
}

.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.service-list li {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  padding: 0 20px;
  border-left: 1px solid var(--border-gray);
}

.service-list li:first-child {
  padding-left: 0;
  border-left: none;
}

@media (max-width: 600px) {
  .service-list-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-list { flex-direction: column; gap: 8px; }
  .service-list li { padding: 0; border-left: none; }
}

/* ══════════════════════════════
   PROTSESS
══════════════════════════════ */
#protsess { background: var(--white); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-steps { margin-top: 48px; }

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  min-width: 44px;
  transition: opacity 0.25s;
}

.step:hover .step-num { opacity: 1; }

.step-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.65;
}

.process-sidebar {
  background: var(--blue-bg);
  border: 1px solid rgba(33,118,199,0.15);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-top: 0;
  position: sticky;
  top: 100px;
}

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.sidebar-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 24px;
}

.cert-list { display: flex; flex-direction: column; gap: 12px; }

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(33,118,199,0.12);
}

.cert-dot {
  width: 32px; height: 32px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.cert-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
}

.cert-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 3px;
  font-weight: 400;
}

/* ══════════════════════════════
   KONTAKT
══════════════════════════════ */
#kontakt { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-left { padding-top: 20px; }

.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 32px; }

.contact-item-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 18px;
  font-weight: 400;
  color: var(--blue-dark);
}

.contact-item-value a {
  color: var(--blue-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--blue); }

/* Form */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--gray-800);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,118,199,0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

.form-privacy-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-top: 14px;
}

.form-privacy-note a {
  color: var(--blue);
  text-decoration: underline;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--blue-dark);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* ══ MOBILE MENU DRAWER ══ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  z-index: 99;
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--blue);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius);
  border-bottom: none !important;
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 110px 24px 64px; min-height: auto; text-align: center; }
  .hero-inner { max-width: 100%; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 0 20px; }
  .stat-item:nth-child(odd) { padding-left: 0; }
  .stat-item:nth-child(even) { border-right: none; }
  section { padding: 64px 20px; }
  #usaldus { padding: 64px 20px !important; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .process-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .proc-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
}
