:root {
  --primary: #152447;
  --accent: #152447;
  --text: #1c2135;
  --muted: #5e6787;
  --bg: #ffffff;
  --card: #ffffff;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 10px 20px rgba(13, 34, 71, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  background: #fff;
  padding: 0.25rem 0.9rem;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(15, 31, 60, 0.08);
  align-items: center;
}

.logo-wordmark {
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: #2f6ef5;
}

.logo-subtitle {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #a2aeca;
  font-weight: 500;
  margin-top: 0.35rem;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-bottom: 0.25rem;
}

nav a:hover {
  color: var(--text);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

main {
  flex: 1;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header a {
  color: var(--accent);
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
  padding-top: 5rem;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(27, 44, 71, 0.08);
  position: relative;
  overflow: hidden;
  animation: none;
}

.hero::after {
  content: none;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: min(420px, 100%);
  overflow: hidden;
  background: #152447;
  box-shadow: 0 18px 40px rgba(21, 36, 71, 0.2);
}

.hero-image img {
  width: 100%;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 36, 71, 0.2);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta.center {
  justify-content: center;
}

.btn {
  border: none;
  border-radius: 0;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 25px rgba(45, 109, 246, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(45, 109, 246, 0.6);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-card {
  padding: 1rem 0;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 0;
  padding: 1.75rem;
  border: 1px solid #edf0fb;
  box-shadow: 0 20px 35px rgba(27, 44, 71, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(15, 31, 60, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--card);
  border-radius: 0;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(84, 104, 151, 0.1);
  box-shadow: 0 25px 35px rgba(15, 31, 60, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.35s ease, color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  border-top: 4px solid var(--primary);
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 35px 55px rgba(10, 18, 46, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
  color: #fff;
}

.service-card:hover .service-link::after {
  color: #fff;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: rgba(45, 109, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.16);
}

.service-link {
  margin-top: 1.5rem;
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.service-link::after {
  content: "→";
  font-size: 1rem;
  color: currentColor;
  transition: transform 0.2s ease;
}

.service-link:hover::after {
  transform: translateX(3px);
}

.tutorials {
  text-align: center;
}

.tutorial-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fdfefe;
  border-radius: 0;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 40px 60px rgba(18, 31, 68, 0.12);
  position: relative;
  overflow: hidden;
}

.tutorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 1px solid rgba(45, 109, 246, 0.35);
  opacity: 0.8;
  pointer-events: none;
}

.tutorial-icon {
  width: 70px;
  height: 70px;
  border-radius: 0;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #8360ff, #2d6df6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 15px 30px rgba(45, 109, 246, 0.45);
}

.tutorial-list {
  list-style: none;
  margin: 1.5rem 0;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}

.tutorial-list li::before {
  content: "✔";
  color: #2fbf71;
  margin-right: 0.6rem;
}

.tutorial-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: #fff;
  border-radius: 0;
  padding: 1rem 1rem 1.5rem;
  box-shadow: 0 25px 35px rgba(13, 31, 60, 0.08);
  display: grid;
  gap: 0.8rem;
}

.video-card video {
  width: 100%;
  border-radius: 0;
  height: 180px;
  object-fit: cover;
  background: #000;
}

.hero-note {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: rgba(45, 109, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  animation: float 7s ease-in-out infinite;
}

.progress-list {
  display: grid;
  gap: 1rem;
}

.progress-card {
  background: #fdfefe;
  border-radius: 0;
  padding: 1rem 1.25rem;
  border: 1px solid #eff2fb;
  box-shadow: 0 10px 20px rgba(10, 31, 64, 0.04);
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 0;
  background: #e4ebfb;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 0;
  transition: width 1.2s ease;
}

.career-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.career-card {
  background: var(--card);
  border-radius: 0;
  padding: 1.75rem;
  border: 1px solid rgba(84, 104, 151, 0.1);
  box-shadow: 0 18px 35px rgba(12, 20, 38, 0.08);
  min-height: 180px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.job-card {
  background: #fdfefe;
  border-radius: 0;
  padding: 1.75rem;
  border: 1px solid #eff2fb;
  box-shadow: 0 15px 30px rgba(11, 20, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.job-heading {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.job-type {
  font-size: 0.85rem;
  color: var(--muted);
}

.job-summary {
  color: var(--muted);
  flex: 1;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-tags span {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0;
  background: rgba(45, 109, 246, 0.12);
  color: var(--accent);
}

.btn-ghost {
  border: 1.5px solid rgba(45, 109, 246, 0.4);
  background: transparent;
  color: var(--accent);
  padding: 0.45rem 1.2rem;
  border-radius: 0;
  font-size: 0.9rem;
  align-self: flex-start;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-info {
  background: var(--card);
  border-radius: 0;
  padding: 2rem;
  border: 1px solid rgba(84, 104, 151, 0.1);
  box-shadow: 0 25px 40px rgba(12, 20, 38, 0.08);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: rgba(45, 109, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item h3 {
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
}

.contact-form {
  background: #fff;
  border-radius: 0;
  padding: 2rem;
  border: 1px solid rgba(84, 104, 151, 0.1);
  box-shadow: 0 35px 50px rgba(11, 28, 64, 0.12);
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--primary);
  display: grid;
  gap: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  border: 1px solid #dbe5ff;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 109, 246, 0.15);
  background: #fff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  transform: translate(-50%, 20px);
  background: #101b30;
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 0;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 15px 30px rgba(10, 16, 47, 0.4);
  text-align: center;
  min-width: 200px;
  max-width: 80vw;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 20px);
  width: min(480px, calc(100% - 2rem));
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-card {
  background: #fff;
  border-radius: 0;
  padding: 1.75rem;
  border: 1px solid rgba(84, 104, 151, 0.12);
  box-shadow: 0 30px 45px rgba(12, 22, 57, 0.18);
  display: grid;
  gap: 1.1rem;
}

.cookie-card h3 {
  margin-bottom: 0.4rem;
}

.cookie-preferences {
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-preferences label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.cookie-preferences input {
  margin-top: 0.25rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-details {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(84, 104, 151, 0.15);
  padding-top: 0.9rem;
  display: none;
}

.cookie-consent.show-details .cookie-details {
  display: block;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(45, 109, 246, 0.12);
  color: var(--accent);
  margin-bottom: 1rem;
}

.badge-inverse {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.section-heading.light {
  color: #fff;
}

.section-description {
  color: var(--muted);
  margin-bottom: 2rem;
}

.section-description.light {
  color: rgba(255, 255, 255, 0.85);
}

.cta {
  background: linear-gradient(135deg, var(--primary), #101b30);
  color: #fff;
  border-radius: 0;
  padding: 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  box-shadow: 0 30px 45px rgba(10, 16, 47, 0.35);
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

footer {
  background: #152447;
  color: #e7ecf5;
  padding: 2rem;
}

footer .footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.05s;
}

.delay-2 {
  transition-delay: 0.1s;
}

.delay-3 {
  transition-delay: 0.15s;
}

.delay-4 {
  transition-delay: 0.2s;
}

@keyframes heroGlow {
  0% {
    box-shadow: 0 20px 40px rgba(27, 44, 71, 0.05);
  }
  100% {
    box-shadow: 0 35px 70px rgba(27, 44, 71, 0.15);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid,
  .job-grid,
  .career-highlights {
    grid-template-columns: 1fr;
  }

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

  .cta {
    padding: 2rem;
  }
}
