/* =========================

   ROOT VARIABLES

========================= */

:root {

  --white: #ffffff;

  --blue-neon: #00bfff;

  --blue-bright: #1aa6ff;

  --blue-deep: #0b4d8b;

  --blue-soft: #e9f6ff;

  --border-light: #dcefff;

  --shadow-glow: 0 0 18px rgba(0, 191, 255, 0.25);
  --shadow-strong: 0 12px 30px rgba(0, 191, 255, 0.2);

}



/* =========================

   RESET

========================= */

*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



/* =========================

   BODY

========================= */

body {

  font-family: "Manrope", "Segoe UI", sans-serif;

  background: radial-gradient(circle at top, #f5fbff 0%, #ffffff 55%, #ffffff 100%);

  color: var(--blue-deep);

  line-height: 1.7;

  min-height: 100vh;

}



/* =========================

   NAV / TASKBAR

========================= */

.taskbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px 48px;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.08);
}


.taskbar::after {

  content: "";

  position: absolute;

  left: 24px;

  right: 24px;

  bottom: 6px;

  height: 2px;

  background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);

  opacity: 0.6;

  pointer-events: none;

}





.logo-link {

  font-family: "Orbitron", "Segoe UI", sans-serif;

  font-size: 1.5rem;

  letter-spacing: 1px;

  color: var(--blue-neon);

  text-decoration: none;

  text-shadow: 0 0 16px rgba(0, 191, 255, 0.35);

}



.taskbar-links {

  list-style: none;

  display: flex;

  gap: 28px;

  flex-wrap: wrap;

  justify-content: center;

}



.taskbar-links li a {
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.15);
}


.taskbar-links li a:hover,

.taskbar-links li a.active {

  color: var(--blue-neon);

  background: var(--blue-soft);

  box-shadow: var(--shadow-strong);

}



/* =========================

   PAGE LAYOUT

========================= */

.page {

  max-width: 1200px;

  margin: 0 auto;

  padding: 12px 32px 80px;

}



.page-hero {

  text-align: center;

  margin-bottom: 40px;

}



.page-hero h1 {

  font-family: "Orbitron", "Segoe UI", sans-serif;

  font-size: clamp(2.2rem, 4vw, 3rem);

  color: var(--blue-neon);

  text-shadow: 0 0 18px rgba(0, 191, 255, 0.35);

  margin-bottom: 12px;

}



.page-hero p {

  max-width: 760px;

  margin: 0 auto;

  color: var(--blue-deep);

  font-size: 1.1rem;

}



/* =========================

   HERO

========================= */

.hero {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 40px;

  align-items: start;

  padding: 10px 0 70px;

}



.eyebrow {

  font-size: 0.95rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: var(--blue-bright);

  margin-bottom: 12px;

  font-weight: 700;

}



.hero h1 {

  font-family: "Orbitron", "Segoe UI", sans-serif;

  font-size: clamp(2.6rem, 5vw, 3.8rem);

  line-height: 1.15;

  color: var(--blue-neon);

  text-shadow: 0 0 22px rgba(0, 191, 255, 0.35);

  margin-bottom: 18px;

}



.hero-lead {

  font-size: 1.2rem;

  color: var(--blue-deep);

  max-width: 560px;

  margin-bottom: 26px;

}



.hero-actions {

  display: flex;

  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 18px;

}



.cta-button,

.ghost-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 32px;

  border-radius: 10px;

  font-weight: 700;

  text-decoration: none;

  transition: all 0.25s ease;
  font-size: 1.05rem;

}



.cta-button {

  background: var(--blue-neon);

  color: var(--white);

  box-shadow: var(--shadow-strong);

}



.cta-button:hover {

  background: var(--blue-bright);

  transform: translateY(-2px);

}



.ghost-button {

  border: 2px solid var(--blue-bright);

  color: var(--blue-neon);

  background: transparent;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.12);

}



.ghost-button:hover {

  background: var(--blue-soft);

  box-shadow: var(--shadow-strong);

}



.hero-meta {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  color: var(--blue-deep);

  font-weight: 600;

}



.hero-meta span {

  background: var(--blue-soft);

  padding: 6px 12px;

  border-radius: 999px;

}



.hero-logo {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 0;

  border: none;

  background: transparent;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.12);

  box-shadow: none;

  margin-top: 0;
}


.logo-image {

  width: min(360px, 100%);

  height: auto;

  filter: drop-shadow(0 0 14px rgba(0, 191, 255, 0.16));
  mix-blend-mode: multiply;

}



/* =========================

   FEATURE GRID

========================= */

.feature-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 24px;
  padding-top: 10px;

}



.feature-card,

.service-card,

.content-card,

.contact-card,

.badge-card {

  background: var(--white);

  border: 1px solid var(--border-light);

  border-radius: 18px;

  padding: 26px;

  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.08);

}



.feature-card h2,

.service-card h2,

.content-card h2,

.contact-card h2,

.badge-card h2 {

  font-family: "Orbitron", "Segoe UI", sans-serif;

  color: var(--blue-neon);

  margin-bottom: 12px;

  font-size: 1.25rem;

}



.feature-card p,

.service-card p,

.content-card p,

.contact-card p,

.badge-card p {

  color: var(--blue-deep);

  font-size: 1.05rem;

}



/* =========================

   SERVICES

========================= */

.service-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 22px;

}



/* =========================

   CONTENT LISTS

========================= */

.clean-list {

  list-style: none;

  display: grid;

  gap: 10px;

  margin-top: 12px;

  color: var(--blue-deep);

  font-weight: 600;

}



.clean-list li::before {

  content: "-";

  color: var(--blue-neon);

  margin-right: 8px;

}



/* =========================

   BADGES

========================= */

.badge-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

  gap: 24px;
  padding-top: 10px;

}



.cert-badge {

  width: 120px;

  height: 120px;

  object-fit: contain;

  margin-bottom: 14px;

  filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.4));

}



.badge-card {

  text-align: center;

}



/* =========================

   CONTACT

========================= */

.contact-card {

  max-width: 620px;

  margin: 0 auto;

  text-align: center;

}


.contact-person {

  margin: 14px 0 18px;

}


.contact-name {

  font-family: "Orbitron", "Segoe UI", sans-serif;

  color: var(--blue-neon);

  font-size: 1.2rem;

  margin-bottom: 6px;

}


.contact-title {

  color: var(--blue-deep);

  font-weight: 600;

}


.contact-socials {

  margin-top: 18px;

}


.social-links {

  display: grid;

  gap: 14px;

  margin-top: 10px;

}


.social-links a {

  display: inline-flex;

  align-items: center;

  justify-content: flex-start;

  padding: 12px 18px;

  border-radius: 16px;

  background: var(--blue-soft);

  color: var(--blue-neon);

  font-weight: 700;

  text-decoration: none;

  border: 1px solid rgba(0, 191, 255, 0.35);

  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.1);

  min-width: 280px;

  gap: 12px;

}


.social-links a:hover {

  transform: translateY(-1px);

  box-shadow: 0 12px 26px rgba(0, 191, 255, 0.16);

}


.social-links i {

  color: var(--blue-neon);

  font-size: 1.1rem;

  text-shadow: 0 0 14px rgba(0, 191, 255, 0.35);

}



.contact-item {

  display: flex;

  flex-direction: column;

  gap: 6px;

  margin: 18px 0;

}



.contact-label {

  font-weight: 700;

  color: var(--blue-bright);

}



.contact-card a {

  color: var(--blue-neon);

  text-decoration: none;

  font-weight: 700;

  font-size: 1.1rem;

}



.contact-card a:hover {

  text-decoration: underline;

}



.contact-note {

  margin-top: 18px;

}



/* =========================

   FOOTER

========================= */

footer {

  text-align: center;

  padding: 40px 20px 50px;

  border-top: 1px solid var(--border-light);

  color: var(--blue-deep);

  font-size: 0.95rem;

}



/* =========================

   MOBILE

========================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }


  .hero-actions {

    justify-content: center;

  }



  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    margin-top: 0;
  }

  .logo-image {
    width: min(300px, 100%);
  }
}


@media (max-width: 720px) {
  .taskbar {
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
  }


  .taskbar-links {

    gap: 10px;

  }



  .page {
    padding: 12px 20px 70px;
  }

  .cta-button,
  .ghost-button {
    width: 100%;
  }

  .hero {
    padding: 0 0 24px;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.6rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .hero-meta {
    display: none;
  }

  .feature-grid {
    display: none;
  }

}

@media (max-width: 720px) {
  .logo-link {
    font-size: 1.25rem;
  }

  .taskbar-links li a {
    font-size: 0.95rem;
    padding: 6px 8px;
  }

  .feature-card,
  .service-card,
  .content-card,
  .contact-card,
  .badge-card {
    padding: 20px;
    border-radius: 16px;
  }

  .service-grid,
  .badge-grid,
  .feature-grid {
    gap: 16px;
  }

  .contact-item {
    margin: 14px 0;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .page-hero h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .page-hero p {
    font-size: 1rem;
  }
}
