/* =========================================================
   GLOBAL
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  color: #0b2545;
  background: #0b2545;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background: #f0a500;
  color: #0b2545;
}

.btn-primary:hover {
  background: #e89500;
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(240, 165, 0, 0.2);
}

.btn-block {
  width: 100%;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
  background: #0b2545;
  height: 62px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 70px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 0.95;
}

.logo span {
  color: #f0a500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  background: #f0a500;
  color: #0b2545 !important;
  padding: 10px 17px;
  border-radius: 8px;
  font-weight: 700 !important;
}

.nav-cta:hover {

  background: #e89500;
}

.mobile-menu {
  display: none;
  color: white;
  background: transparent;
  border: none;
  font-size: 25px;
  cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  background: #0b2545;
  color: #ffffff;
  text-align: center;
  padding:
    48px 20px
    40px;
}

.hero__content {
  max-width: 650px;
  margin: 0 auto;
  background: #0b2545;
}

.hero h1 {
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero h1 span {
  text-decoration: underline;
}

.hero__image {
  object-fit: contain;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.hero__description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.hero__description strong {
  font-weight: 800;
}

.hero__eyebrow {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.hero .btn {
  padding:
    13px 28px;
  font-size: 16px;
  font-weight: 800;
}

.cta-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
  background: #ffffff;
  padding:
    28px 20px
    20px;
}

.stats__grid {
  max-width: 900px;
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  text-align: center;
}

.stat__number {
  color: #000000;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat__label {
  color: #222222;
  font-size: 12px;
  font-weight: 500;
}


/* =========================================================
   CLIENTS
========================================================= */

.clients {
  background: #ffffff;
  text-align: center;
  padding:
    15px 20px
    45px;
}

.clients h2 {
  color: #0b2545;
  font-size: clamp(25px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 30px;
}

.clients h2 .emoji {
  display: inline-block;
  margin:
    0 6px;
  font-size: 34px;
  vertical-align: middle;
}

.clients__grid {
  max-width: 700px;
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(4, 1fr);

  gap:
    25px
    30px;

  align-items: center;
}

.client-logo {
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 105px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

/*
  Text fallbacks in case you don't have
  the logo files yet.
*/

.logo-text {
  font-size: 11px;
  font-weight: 800;
  color: #555;
}

.logo-dark {
  background: #111111;
  color: #ffffff;
  width: 65px;
  height: 50px;
  font-size: 8px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-yellow {
  background: #f0c426;
  color: #0b2545;
  width: 65px;
  height: 50px;
  font-size: 9px;
  font-weight: 800;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =========================================================
   PRICING
========================================================= */

.pricing {
  background: #0b2545;
  padding:
    80px 30px;
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
  background: #0b2545;
}

.section__header h2 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 12px;
  background: #0b2545;
}

.section__header p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  background: #0b2545;
}

.pricing__cards {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 32px;

  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  background: #ffffff;
  border: 1.5px solid #ede8e3;
  border-radius: 14px;

  padding:
    40px 24px;

  text-align: center;

  transition:
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: #f0a500;
  box-shadow:
    0 20px 50px
    rgba(240, 165, 0, 0.12);
}

.price-card:hover {
  border-color: #f0a500;
  box-shadow:
    0 20px 50px
    rgba(240, 165, 0, 0.12);

  transform: translateY(-4px);
}

.price-card__badge {
  font-size: 11px;
  color: #f0a500;

  text-transform: uppercase;
  letter-spacing: 1px;

  font-weight: 700;

  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 16px;
}

.price-card__amount {
  font-size: 30px;
  color: #f0a500;

  font-weight: 700;

  margin-bottom: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  flex-wrap: wrap;
}

.price-card__detail {
  font-size: 13px;
  color: #888;

  margin-bottom: 24px;
  padding-bottom: 24px;

  border-bottom:
    1px solid #ede8e3;
}

.price-card__features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  flex-grow: 1;
}

.price-card__features li {
  font-size: 14px;
  color: #666;

  line-height: 1.8;

  margin-bottom: 12px;
  padding-left: 20px;

  position: relative;
}

.price-card__features li:before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #f0a500;
  font-weight: 700;
}

.badge-savings {
  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #f0a500 0%,
      #e89500 100%
    );

  color: white;

  padding:
    4px 10px;

  border-radius: 20px;

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: 0.5px;

  white-space: nowrap;
}

.price-old {
  text-decoration: line-through;
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;
  background: #0b2545;
  color: #ffffff;

  padding:
    12px 30px
    22px;
}

.footer-content {
  max-width: 1175px;
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr
    1fr
    1.35fr
    0.9fr;

  column-gap: 55px;
}

.footer-column h3 {
  margin:
    0 0 16px;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-column a {
  display: block;

  color: #ffffff;
  text-decoration: none;

  font-size: 16px;
  line-height: 1.35;

  margin-bottom: 12px;

  transition: opacity 0.2s ease;
}

.footer-column a:hover {
  opacity: 0.65;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
}

.social-icon {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;




  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon.linkedin {
  font-size: 17px;
  font-weight: 800;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.heart {
  color: #ff4f7b;
  font-size: 18px;
  margin: 0 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .footer-content {
    grid-template-columns:
      repeat(2, 1fr) !important;

    row-gap: 35px;
    column-gap: 35px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* NAV */

  .navbar {
    height: 60px;
  }

  .navbar__inner {
    padding:
      0 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-cta {
    display: none;
  }


  /* HERO */

  .hero {
    padding:
      40px 20px
      35px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero__image {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .hero__description {
    font-size: 13px;
  }


  /* STATS */

  .stats {
    padding:
      25px 10px
      18px;
  }

  .stat__number {
    font-size: 29px;
  }

  .stat__label {
    font-size: 10px;
  }


  /* CLIENTS */

  .clients {
    padding:
      18px 20px
      40px;
  }

  .clients__grid {
    grid-template-columns:
      repeat(2, 1fr);

    max-width: 400px;

    gap:
      22px
      15px;
  }


  /* PRICING */

  .pricing {
    padding:
      60px 20px;
  }

  .pricing__cards {
    gap: 24px;
  }

  .section__header {
    margin-bottom: 35px;
  }

  .section__header h2 {
    font-size: 28px;
  }

  .section__header p {
    font-size: 15px;
  }

  .price-card {
    padding:
      30px 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .hero h1 {
    font-size: 27px;
  }

  .hero__image {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
  .hero__description {
    font-size: 14px;
  }

  .stats__grid {
    gap: 5px;
  }

  .stat__number {
    font-size: 24px;
  }

  .stat__label {
    font-size: 11px;
  }

  .clients h2 {
    font-size: 23px;
  }

  .clients h2 .emoji {
    font-size: 28px;
  }

  .pricing {
    padding:
      50px 16px;
  }

  .section__header h2 {
    font-size: 25px;
  }

  .section__header p {
    font-size: 14px;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding:
      28px 18px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price-card__amount {
    font-size: 28px;
    gap: 5px;
  }

  .price-card__detail {
    font-size: 12px;
  }

  .price-card__features li {
    font-size: 13px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    row-gap: 30px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 35px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 360px) {

  .hero h1 {
    font-size: 24px;
  }

   .hero__image {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .stat__number {
    font-size: 21px;
  }

  .stat__label {
    font-size: 7px;
  }

  .clients__grid {
    gap: 15px 5px;
  }

}