
:root {
  --cobalt: #002b84;
  --blue: #0038a8;
  --yellow: #ffd300;
  --dark: #001a50;

  --white: #ffffff;
  --light: #f5f7fb;
  --text: #101828;
  --muted: #667085;
  --border: #dfe4ec;

  --container: 1180px;
  --radius: 5px;
}


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

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--cobalt);
  color: var(--white);

  font-family: "Archivo", Arial, sans-serif;

  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   GLOBAL
========================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}


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

.hero {
  position: relative;
  min-height: 700px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 56, 168, 0.85),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      #001d5d 0%,
      #002b84 45%,
      #0038a8 100%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.13;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    );

  background-size: 50px 50px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 150px;
  padding-bottom: 100px;
}

.eyebrow {
  margin-bottom: 25px;

  color: var(--yellow);

  font-family: "JetBrains Mono", monospace;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 1000px;

  font-size: clamp(64px, 12vw, 150px);

  line-height: 0.85;

  font-weight: 900;

  letter-spacing: -0.07em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 650px;

  margin-top: 42px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 20px;

  line-height: 1.6;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-top: 40px;
}


/* =========================
   BUTTON
========================= */

.btn {
  display: inline-flex;

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

  min-height: 58px;

  padding: 0 28px;

  background: var(--yellow);
  color: var(--dark);

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

  border-radius: var(--radius);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.25);
}


/* =========================
   PHONE
========================= */

.phone-info {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.phone-label {
  color: rgba(255, 255, 255, 0.55);

  font-family: "JetBrains Mono", monospace;

  font-size: 11px;

  letter-spacing: 0.12em;
}

.phone-info strong {
  font-size: 18px;
}


/* =========================
   STATUS
========================= */

.status {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 30px;

  font-family: "JetBrains Mono", monospace;

  font-size: 12px;
}

.status-dot {
  width: 9px;
  height: 9px;

  flex: 0 0 9px;

  border-radius: 50%;

  background: #98a2b3;
}

.status.open .status-dot {
  background: #32d583;

  box-shadow:
    0 0 12px rgba(50, 213, 131, 0.8);
}

.status.closed .status-dot {
  background: #ff4d4d;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 55px;
}

.section-heading > div {
  display: flex;

  align-items: flex-start;

  gap: 20px;
}

.section-number {
  color: var(--yellow);

  font-family: "JetBrains Mono", monospace;

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

.section-heading h2 {
  font-size: clamp(38px, 5vw, 64px);

  line-height: 0.95;

  font-weight: 900;

  letter-spacing: -0.05em;
}

.section-heading > p {
  max-width: 360px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;

  line-height: 1.6;
}

.dark-heading {
  color: var(--text);
}

.dark-heading > p {
  color: var(--muted);
}


/* =========================
   SERVICES
========================= */

.services {
  background: var(--cobalt);
}

.services-grid {
  display: grid;

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

  gap: 14px;
}

.card {
  position: relative;

  min-height: 360px;

  padding: 32px;

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

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

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.2);
}

.card-number {
  position: absolute;

  top: 24px;
  right: 24px;

  color: #b7c0cf;

  font-family: "JetBrains Mono", monospace;

  font-size: 12px;
}

.card-icon {
  display: flex;

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

  width: 58px;
  height: 58px;

  margin-top: 30px;
  margin-bottom: 50px;

  background: var(--light);
  color: var(--cobalt);

  font-family: "JetBrains Mono", monospace;

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

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

.card h3 {
  margin-bottom: 16px;

  font-size: 24px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -0.03em;
}

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

  font-size: 14px;

  line-height: 1.65;
}


/* =========================
   PRICING
========================= */

.pricing {
  background: var(--light);

  color: var(--text);
}

.price-list {
  border-top: 1px solid var(--border);
}

.price-row {
  display: flex;

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

  gap: 30px;

  min-height: 90px;

  padding: 20px 0;

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

.price-row > div:first-child {
  display: flex;

  flex-direction: column;

  gap: 6px;

  min-width: 0;
}

.price-row strong {
  font-size: 16px;
}

.price-row span {
  color: var(--muted);

  font-size: 13px;
}

.price-wrapper {
  display: flex;

  align-items: center;

  gap: 18px;

  flex-shrink: 0;
}

.price {
  color: var(--cobalt) !important;

  font-family: "JetBrains Mono", monospace;

  font-size: 17px !important;

  white-space: nowrap;
}

.badge {
  padding: 7px 10px;

  background: var(--yellow);
  color: var(--dark) !important;

  font-size: 10px !important;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  white-space: nowrap;
}

.price-note {
  margin-top: 25px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.6;
}


/* =========================
   CONTACT
========================= */

.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;

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

  gap: 1px;

  background: rgba(255, 255, 255, 0.15);
}

.contact .item {
  display: flex;

  flex-direction: column;

  gap: 8px;

  min-height: 180px;

  padding: 30px;

  background: var(--dark);
}

.contact-label {
  margin-bottom: 18px;

  color: var(--yellow) !important;

  font-family: "JetBrains Mono", monospace;

  font-size: 11px !important;
  font-weight: 600;

  letter-spacing: 0.1em;
}

.contact .item strong,
.contact .item a {
  font-size: 17px;

  font-weight: 700;

  overflow-wrap: anywhere;
}

.contact .item a:hover {
  color: var(--yellow);
}

.contact .item > span:not(.contact-label) {
  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;
}


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

.footer {
  background: #000f32;
}

.footer-inner {
  display: flex;

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

  gap: 20px;

  min-height: 90px;

  color: rgba(255, 255, 255, 0.55);

  font-family: "JetBrains Mono", monospace;

  font-size: 11px;
}


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

.mobile-callbar {
  display: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

  .hero-content {
    padding-top: 120px;
  }

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

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

}


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

@media (max-width: 767px) {

  body {
    padding-bottom: 66px;
  }

  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding: 55px 0;
  }


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

  .hero {
    min-height: auto;

    background:
      radial-gradient(
        circle at 90% 10%,
        rgba(0, 56, 168, 0.9),
        transparent 40%
      ),
      linear-gradient(
        145deg,
        #00194f,
        #002b84 60%,
        #0038a8
      );
  }

  .hero-grid {
    opacity: 0.07;

    background-size: 32px 32px;
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .eyebrow {
    margin-bottom: 17px;

    font-size: 9px;

    letter-spacing: 0.06em;

    line-height: 1.4;
  }

  .hero h1 {
    max-width: 100%;

    /*
      Smaller Automonters
      for mobile
    */

    font-size: 42px;

    line-height: 0.9;

    letter-spacing: -0.055em;
  }

  .hero-lead {
    max-width: 430px;

    margin-top: 22px;

    font-size: 14px;

    line-height: 1.55;
  }

  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 25px;
  }

  .btn {
    width: 100%;

    min-height: 48px;

    padding: 0 18px;

    font-size: 13px;
  }

  .phone-info {
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    padding-top: 2px;
  }

  .phone-label {
    font-size: 8px;

    letter-spacing: 0.08em;
  }

  .phone-info strong {
    font-size: 14px;
  }

  .status {
    margin-top: 19px;

    gap: 8px;

    font-size: 9px;
  }

  .status-dot {
    width: 8px;
    height: 8px;

    flex-basis: 8px;
  }


  /* =========================
     HEADINGS
  ========================= */

  .section-heading {
    display: block;

    margin-bottom: 27px;
  }

  .section-heading > div {
    gap: 10px;
  }

  .section-number {
    padding-top: 4px;

    font-size: 9px;
  }

  .section-heading h2 {
    font-size: 33px;

    line-height: 0.95;

    letter-spacing: -0.045em;
  }

  .section-heading > p {
    max-width: 430px;

    margin-top: 12px;

    font-size: 12px;

    line-height: 1.5;
  }


  /* =========================
     SERVICES
  ========================= */

  .services {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .card {
    min-height: 0;

    padding: 22px;

    border-radius: 3px;
  }

  .card:hover {
    transform: none;

    box-shadow: none;
  }

  .card-number {
    top: 18px;
    right: 18px;

    font-size: 9px;
  }

  .card-icon {
    width: 44px;
    height: 44px;

    margin-top: 0;
    margin-bottom: 19px;

    font-size: 11px;
  }

  .card h3 {
    margin-bottom: 9px;

    font-size: 19px;

    line-height: 1.15;
  }

  .card p {
    max-width: 500px;

    font-size: 12px;

    line-height: 1.55;
  }


  /* =========================
     PRICING
  ========================= */

  .pricing {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .price-row {
    gap: 12px;

    min-height: 0;

    padding: 16px 0;
  }

  .price-row > div:first-child {
    flex: 1;

    gap: 4px;
  }

  .price-row strong {
    font-size: 13px;

    line-height: 1.3;
  }

  .price-row span {
    font-size: 10px;

    line-height: 1.35;
  }

  .price-wrapper {
    gap: 6px;
  }

  .price {
    font-size: 12px !important;
  }

  .badge {
    padding: 5px 6px;

    font-size: 7px !important;
  }

  .price-note {
    margin-top: 16px;

    font-size: 9px;

    line-height: 1.5;
  }


  /* =========================
     CONTACT
  ========================= */

  .contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }

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

    gap: 1px;
  }

  .contact .item {
    min-height: 0;

    padding: 20px;

    gap: 5px;
  }

  .contact-label {
    margin-bottom: 8px;

    font-size: 8px !important;

    letter-spacing: 0.08em;
  }

  .contact .item strong,
  .contact .item a {
    font-size: 14px;

    line-height: 1.3;
  }

  .contact .item > span:not(.contact-label) {
    font-size: 10px;

    line-height: 1.4;
  }


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

  .footer-inner {
    min-height: 70px;

    padding: 12px 0;

    gap: 8px;

    font-size: 8px;

    line-height: 1.4;
  }


  /* =========================
     FIXED CALL BUTTON
  ========================= */

  .mobile-callbar {
    position: fixed;

    z-index: 9999;

    left: 0;
    right: 0;
    bottom: 0;

    display: block;

    padding: 8px;

    background: rgba(0, 15, 50, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-callbar a {
    display: flex;

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

    width: 100%;

    min-height: 46px;

    background: var(--yellow);
    color: var(--dark);

    font-size: 13px;

    font-weight: 800;

    border-radius: 3px;
  }

}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 380px) {

  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 48px 0;
  }


  /* HERO */

  .hero-content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 38px;

    line-height: 0.9;
  }

  .hero-lead {
    font-size: 12px;
  }

  .phone-info strong {
    font-size: 13px;
  }


  /* HEADINGS */

  .section-heading h2 {
    font-size: 30px;
  }


  /* SERVICES */

  .card {
    padding: 19px;
  }

  .card-icon {
    width: 40px;
    height: 40px;

    margin-bottom: 17px;
  }

  .card h3 {
    font-size: 17px;
  }

  .card p {
    font-size: 11px;
  }


  /* PRICING */

  .price-row {
    gap: 8px;

    padding: 14px 0;
  }

  .price-row strong {
    font-size: 12px;
  }

  .price-row span {
    font-size: 9px;
  }

  .price {
    font-size: 11px !important;
  }

  .badge {
    display: none;
  }


  /* CONTACT */

  .contact .item {
    padding: 18px;
  }

  .contact .item strong,
  .contact .item a {
    font-size: 13px;
  }

}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {

  .btn:hover {
    transform: none;

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .card:hover {
    transform: none;

    box-shadow: none;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

}

