/* =========================================
   CAREER PLUG
   MAIN STYLESHEET
========================================= */

:root {
  --navy: #12355b;
  --navy-dark: #0b2540;
  --blue: #1769aa;
  --green: #16a085;
  --green-light: #e8f7f3;

  --white: #ffffff;
  --background: #f5f7fa;
  --text: #1f2937;
  --muted: #667085;
  --border: #e5e7eb;

  --shadow: 0 12px 35px rgba(18, 53, 91, 0.08);

  --radius: 16px;
}


/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  background: var(--background);
  color: var(--text);

  line-height: 1.7;
}

img {
  max-width: 100%;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255,255,255,.96);

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

  backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 74px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 27px;
  font-weight: 850;

  color: var(--navy);

  letter-spacing: -1.2px;
}

.logo span {
  color: var(--green);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navigation a {
  color: #344054;

  font-size: 14px;
  font-weight: 700;

  transition: color .2s ease;
}

.navigation a:hover,
.navigation a.active {
  color: var(--blue);
}

.navigation .nav-contact {
  background: var(--navy);
  color: white;

  padding: 10px 17px;

  border-radius: 9px;
}

.mobile-menu-button {
  display: none;

  border: none;
  background: none;

  font-size: 27px;
  cursor: pointer;

  color: var(--navy);
}


/* =========================================
   HERO
========================================= */

.hero {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(101,230,195,.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #0d2d4d,
      #1769aa
    );

  color: white;

  padding: 100px 0 90px;

  overflow: hidden;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 70px;

  align-items: center;
}

.hero-badge {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 22px;

  background: rgba(255,255,255,.1);

  border: 1px solid rgba(255,255,255,.18);

  border-radius: 30px;

  color: #dcecf6;

  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 70px);

  line-height: 1.02;

  letter-spacing: -3px;

  max-width: 720px;

  margin-bottom: 24px;
}

.hero h1 span {
  display: block;

  color: #65e6c3;
}

.hero p {
  max-width: 680px;

  font-size: 19px;

  color: #e1edf5;

  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 21px;

  border-radius: 9px;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: white;

  box-shadow: 0 8px 20px rgba(22,160,133,.25);
}

.button-light {
  color: white;

  border: 1px solid rgba(255,255,255,.4);
}

.button-outline-dark {
  color: var(--navy);

  border: 1px solid var(--navy);
}

.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 28px;

  color: #cbdce8;

  font-size: 13px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
  position: relative;

  min-height: 420px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.career-card {
  width: min(100%, 390px);

  padding: 30px;

  background: white;

  border-radius: 20px;

  box-shadow:
    0 30px 80px rgba(0,0,0,.22);

  color: var(--text);
}

.career-card-header {
  display: flex;

  align-items: center;

  gap: 14px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--border);
}

.career-avatar {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--navy);

  color: white;

  border-radius: 14px;

  font-weight: 900;
}

.career-card-header strong {
  display: block;

  color: var(--navy);

  font-size: 16px;
}

.career-card-header small {
  color: var(--muted);
}

.career-progress {
  padding: 25px 0;

  border-bottom: 1px solid var(--border);
}

.progress-label {
  display: flex;

  justify-content: space-between;

  margin-bottom: 9px;

  font-size: 13px;
}

.progress-label strong {
  color: var(--green);
}

.progress-bar {
  height: 9px;

  background: #e8edf1;

  border-radius: 20px;

  overflow: hidden;
}

.progress-fill {
  width: 78%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--green),
      #53d8b7
    );

  border-radius: inherit;
}

.career-tasks {
  padding-top: 20px;
}

.task {
  display: flex;

  gap: 12px;

  align-items: center;

  padding: 9px 0;

  color: #667085;

  font-size: 14px;
}

.task span {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eef2f5;

  color: var(--blue);

  font-size: 12px;
}

.task.completed span {
  background: var(--green-light);

  color: var(--green);
}

.floating-card {
  position: absolute;

  padding: 14px 18px;

  background: white;

  border-radius: 12px;

  box-shadow: var(--shadow);

  color: var(--navy);

  animation: float 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;

  font-size: 15px;
}

.floating-card span {
  color: var(--muted);

  font-size: 11px;
}

.floating-card-one {
  top: 50px;
  left: 0;
}

.floating-card-two {
  right: 0;
  bottom: 45px;

  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


/* =========================================
   SECTIONS
========================================= */

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 700px;

  margin: 0 auto 45px;

  text-align: center;
}

.section-heading-row {
  max-width: none;

  display: flex;

  align-items: end;

  justify-content: space-between;

  text-align: left;
}

.section-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--green);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1.4px;
}

.section-heading h2 {
  color: var(--navy);

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.15;

  letter-spacing: -1.2px;

  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);

  font-size: 16px;
}


/* =========================================
   CATEGORIES
========================================= */

.category-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.category-card {
  background: white;

  padding: 30px;

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

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.category-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 40px rgba(18,53,91,.12);
}

.category-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  margin-bottom: 18px;

  font-size: 23px;
}

.category-icon.blue {
  background: #e9f4fb;
}

.category-icon.purple {
  background: #f1ebff;
}

.category-icon.green {
  background: #e7f8f2;
}

.category-icon.orange {
  background: #fff1e3;
}

.category-icon.red {
  background: #ffebeb;
}

.category-icon.teal {
  background: #e7f8f8;
}

.category-card h3 {
  color: var(--navy);

  font-size: 18px;

  margin-bottom: 8px;
}

.category-card p {
  color: var(--muted);

  font-size: 14px;

  margin-bottom: 18px;
}

.category-card > span {
  color: var(--blue);

  font-size: 14px;

  font-weight: 800;
}


/* =========================================
   ADVERTISEMENT
========================================= */

.ad-container {
  width: min(92%, 970px);

  margin: 0 auto;

  padding: 15px 0;
}

.ad-placeholder {
  min-height: 90px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #98a2b3;

  border: 1px dashed #d0d5dd;

  background: #fafafa;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/* =========================================
   ARTICLES
========================================= */

.articles-section {
  background: #fff;
}

.view-all {
  color: var(--blue);

  font-size: 14px;

  font-weight: 800;
}

.article-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.article-card {
  background: white;

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

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);

  transition: transform .2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-image {
  height: 190px;

  display: flex;

  align-items: end;

  padding: 20px;
}

.article-image span {
  color: white;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 1px;

  background: rgba(0,0,0,.2);

  padding: 6px 10px;

  border-radius: 5px;
}

.article-image-blue {
  background:
    linear-gradient(
      135deg,
      #12355b,
      #1769aa
    );
}

.article-image-purple {
  background:
    linear-gradient(
      135deg,
      #513b8c,
      #8266c4
    );
}

.article-image-green {
  background:
    linear-gradient(
      135deg,
      #087f68,
      #22b897
    );
}

.article-content {
  padding: 25px;
}

.article-meta {
  color: var(--green);

  font-size: 12px;

  font-weight: 800;

  margin-bottom: 9px;
}

.article-content h3 {
  color: var(--navy);

  font-size: 20px;

  line-height: 1.3;

  margin-bottom: 10px;
}

.article-content p {
  color: var(--muted);

  font-size: 14px;

  margin-bottom: 18px;
}

.article-link {
  color: var(--blue);

  font-size: 14px;

  font-weight: 800;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #0d2d4d,
      #12355b
    );

  color: white;
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.light-label {
  color: #65e6c3;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  margin-bottom: 20px;
}

.about-content p {
  color: #dce8f0;

  margin-bottom: 18px;

  font-size: 16px;
}

.about-content .button {
  margin-top: 15px;
}

.about-points {
  display: grid;

  gap: 15px;
}

.about-point {
  display: flex;

  gap: 20px;

  padding: 22px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 14px;
}

.point-number {
  color: #65e6c3;

  font-size: 13px;

  font-weight: 900;
}

.about-point h3 {
  margin-bottom: 4px;
}

.about-point p {
  color: #bcd0dd;

  font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
  padding: 100px 0;

  background: #edf9f6;
}

.cta-box {
  max-width: 760px;

  text-align: center;

  margin: 0 auto;
}

.cta-box h2 {
  color: var(--navy);

  font-size: clamp(32px, 4vw, 46px);

  line-height: 1.1;

  letter-spacing: -1.3px;

  margin-bottom: 15px;
}

.cta-box p {
  color: var(--muted);

  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #081b2d;

  color: #dce7ef;

  padding: 65px 0 20px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.7fr 1fr 1fr 1fr;

  gap: 45px;
}

.footer-logo {
  color: white;
}

.footer-brand p {
  max-width: 320px;

  color: #9fb1c0;

  font-size: 14px;

  margin-top: 15px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.footer-column h3 {
  color: white;

  font-size: 14px;

  margin-bottom: 8px;
}

.footer-column a {
  color: #9fb1c0;

  font-size: 13px;
}

.footer-column a:hover {
  color: #65e6c3;
}

.footer-bottom {
  margin-top: 50px;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,.08);

  display: flex;

  justify-content: space-between;

  gap: 20px;

  color: #72889a;

  font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .navigation {
    position: absolute;

    top: 74px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 6% 20px;

    background: white;

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

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

  .navigation.open {
    display: flex;
  }

  .navigation a {
    padding: 13px 0;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 370px;
  }

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

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

}


@media (max-width: 600px) {

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 43px;

    letter-spacing: -2px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .career-card {
    width: 90%;
  }

  .floating-card-one {
    left: -5px;
    top: 30px;
  }

  .floating-card-two {
    right: -5px;
    bottom: 25px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading-row {
    display: block;
  }

  .view-all {
    display: inline-block;

    margin-top: 10px;
  }

  .category-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
  }

}