html, body { font-family: "transducer", sans-serif; }

:root {
  --vc-white: #ffffff;
  --vc-orange: #ff9e1b;
  --vc-blue: #002a3a;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

body {
  margin: 0;
  color: var(--vc-white);
  background: var(--vc-blue);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vc-white);
  border-bottom: 4px solid var(--vc-orange);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 5%;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--vc-blue);
  text-decoration: none;
  transition: .2s ease;
}
.nav-links a:hover { color: var(--vc-orange); }

.info-hero {
  position: relative;
  background: var(--vc-blue);
  background-image: url("taustakuva.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  isolation: isolate;
}
.info-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 42, 58, 0.65);
  z-index: 0;
}
.info-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5% 96px;
  position: relative;
  z-index: 1;
}
.info-panel {
  background: var(--vc-blue);
  color: var(--vc-white);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  max-width: 760px;
}
.info-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.lead { font-size: 1.05rem; opacity: 0.9; }

.slice-white {
  background: var(--vc-white);
  color: var(--vc-blue);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 5%;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.feature-reverse { grid-template-columns: 0.9fr 1.1fr; }

.feature-text h3 {
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2.2rem);
  font-weight: 400;
  margin: 0 0 12px;
}
.feature-text p { margin: 0 0 12px; }

.feature-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow);
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--vc-orange);
  color: var(--vc-blue);
  border: 2px solid var(--vc-orange);
}
.btn-primary:hover {
  background: var(--vc-white);
  color: var(--vc-blue);
  border-color: var(--vc-white);
}
.btn-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.cta {
  background: var(--vc-blue);
  padding: 80px 5%;
  color: var(--vc-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.cta-form { display: grid; gap: 12px; }
.cta-form label { display: grid; gap: 6px; }
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--vc-white);
  background: transparent;
  color: var(--vc-white);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,.75); }

.site-footer {
  background: var(--vc-white);
  color: var(--vc-blue);
  padding: 60px 5% 40px;
  text-align: center;
  border-top: 4px solid var(--vc-orange);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 10px 0 20px;
  padding: 0;
}
.footer-links a {
  color: var(--vc-blue);
  text-decoration: none;
  font-size: .95rem;
  transition: .2s ease;
}
.footer-links a:hover { color: var(--vc-orange); }
.footer-copy { font-size: .85rem; opacity: .8; margin-top: 20px; }

@media (max-width: 900px) {
  .nav-container { flex-direction: column; gap: 10px; }
  .nav-logo img { height: 30px; }
  .feature-grid, .feature-reverse { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .container { padding: 48px 5%; }
}
