:root {
     --font-1-heading: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
     --font-2-subheading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
     --font-3-body: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
     --font-4-script: 'Dancing Script', cursive;

     --color-1: #004001;
     --color-2: #0e680e;
     --color-3: #008601;
     --color-4: #52c800;
     --color-5: #86c881;
     --color-6: #daeed9;

     --bg-1: #f5f7fb;
     --bg-2: #f5f7fb;
     --bg-footer: #004502;

     --accent-1: #ff8200;
     --accent-2: #ffb400;
     --accent-3: #ffda01;
     --accent-4: #ffef00;
     --accent-5: #fffe80;
     --accent-6: #fffeaa;
     --accent-7: #ffffe1;

     --shade-1: #060d30;
     --shade-2: #2e3651;
     --shade-3: #495266;
     --shade-4: #5b6475;
     --shade-5: #999;
     --shade-6: #ccc;
     --shade-7: #f6f6f6;

     --light-1: #fff;
     --light-2: #f6fafd;

     --red-1: #ff0000;
     --red-2: #bf0000;
     --red-3: #ff3300;

     --radius: 24px;
     --radius-xl: 32px;

     --shadow:
          0 6px 16px rgba(9, 37, 77, 0.18),
          0 14px 36px rgba(9, 37, 77, 0.10);
     --shadow-btn:
          0 2px 4px rgba(0, 0, 0, 0.20),
          0 4px 8px rgba(0, 0, 0, 0.15);
     --shadow-btn-hover:
          0 4px 8px rgba(0, 0, 0, 0.25),
          0 8px 16px rgba(0, 0, 0, 0.20);

}

*,
*::before,
*::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     text-decoration: none;
}

html,
body {
     height: 100%;
     margin: 0;
     padding: 0;
     font-family: var(--font-3-body);
     color: var(--color-text);
     font-size: 1rem;
     background-color: var(--bg-1);
}

h1 {
     font-family: var(--font-1-heading);
     font-size: clamp(2.1rem, 3vw, 2.6rem);
     line-height: 1.2;
     color: var(--color-1);
     margin: 0;
}

h2 {
     font-family: var(--font-2-subheading);
     font-size: clamp(1.4rem, 2.2vw, 1.9rem);
     font-weight: 600;
     line-height: 1.3;
     color: var(--color-1);
     margin: 0 0 0.75rem 0;
}

h3 {
     font-family: var(--font-2-subheading);
     font-size: clamp(1.1rem, 1.6vw, 1.35rem);
     font-weight: 600;
     line-height: 1.35;
     color: var(--color-2);
     margin: 0 0 0.5rem 0;
}

h4 {
     font-family: var(--font-4-script);
}

img {
     width: 100%;
     height: auto;
     display: block;
}

.red {
     color: var(--red-1);
}

.red-2 {
     color: var(--red-2);
}

.bold {
     font-weight: 600;
}

.bold-small {
     font-size: 0.8rem;
     font-weight: 600;
}

.read-on {
     margin-top: 0.75rem;
     font-weight: 600;
     color: var(--color-2);
     text-decoration: none;
}

.read-on:hover {
     color: var(--color-3);
     text-decoration: underline;
}

p {
     margin-bottom: 0.7rem
}

hr {
     margin: 1rem 0;
}

ul {
     margin: 0.2rem 0 0 0.5rem;
     padding-left: 1.1rem;
     color: var(--shade-4);
     font-size: 0.96rem;
     line-height: 1.6;
}

ol {
     margin: 0.7rem 0 0.7rem 1.5rem;
}

ol li {
     text-indent: 0.25rem;
     /* Adjust spacing bet. Numbers and Text */
     font-weight: 500;
     line-height: 1.7rem;
}

ol li a {
     color: inherit;
     /* Keeps the default text color */
}.wrapper-below-header {
   display: grid;
   grid-template-rows: 1fr auto;
   min-height: 100vh;
   padding-top: 7rem;
}

.container {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.5rem;
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 1rem;
   /* border: 2px solid plum; */
}

main {
   width: 100%;
   /* margin-bottom: 2rem; */
}

/* =======================
   TABLET
========================== */

@media (max-width: 960px) {
   /* .grid { */
}

/* =======================
   MOBILE
========================== */

@media (max-width: 768px) {
   .container {
      gap: 0.5rem;
      padding: 0 0.5rem;
   }

   main {
      margin-bottom: 2rem;
      padding: 0 0.5rem;
   }
}section {
     grid-column: span 3;
     background: var(--light);
     /* padding: 1rem; */
     padding: 2.25rem 1.5rem;
     border-radius: var(--radius);
     box-shadow: var(--shadow);

}

/* section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-1);
    text-align: center;
} */

/* section h2 {
     font-size: 1.5rem;
     font-weight: 400;
     color: var(--color-1);
     text-align: center;
} */

/* section h3 {
     font-size: 1.4rem;
     font-weight: 300;
     color: var(--color-2);
     text-align: center;
} */

section h4 {
     font-size: 1.3rem;
     font-weight: 200;
     color: var(--color-1);
     text-align: center;
}

section h6 {
     font-size: 1.8rem;
     font-weight: 600;
     color: var(--red-1);
     text-align: center;
}

section li a {
     color: var(--color-2);
}

section li a:hover {
     color: var(--color-4);
}

.bg-1 {
     background: var(--color-1);
}

.bg-2 {
     background: var(--color-2);
     color: var(--light-1);
}


/* =======================
   TABLET
========================== */

@media (max-width: 960px) {
     section {
          grid-column: 4 / span 6;
     }

}

/* =======================
   MOBILE
========================== */

@media (max-width: 768px) {

     section {
          grid-column: span 12;
          font-size: 0.8rem;
          padding: 1rem;
     }

     section h1 {
          font-size: 1.4rem;
     }

     section h2 {
          font-size: 1.3rem;
          text-align: left;
     }

     section h3 {
          font-size: 1.2rem;
          text-align: left;
     }

     section h4 {
          font-size: 1.1rem;
          text-align: left;
     }

     section h6 {
          font-size: 1.4rem;
     }

}/* =========================
   SECTION SPAN (12-col container)
========================= */
.home-hero,
.home-services,
.home-split,
.home-process,
.home-cta {
   grid-column: 1 / -1;
   /* border: 2px solid red; */
}

/* =========================
   HERO
========================= */
.home-hero {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.5rem;
   align-items: center;
   /* padding: 2.25rem 0 1.5rem 0; */
}

.hero-copy {
   grid-column: 1 / span 7;
   display: grid;
   gap: 1rem;
}

.hero-kicker {
   font-family: var(--font-2-subheading);
   font-weight: 600;
   letter-spacing: 0.02em;
   color: var(--color-2);
}

.hero-copy h1 {
   max-width: 22ch;
}

.hero-highlight {
   color: var(--accent-1);
}

.hero-subtext {
   color: var(--shade-3);
   font-size: 1.05rem;
   line-height: 1.7;
   max-width: 58ch;
}

.hero-cta {
   display: grid;
   grid-auto-flow: column;
   grid-auto-columns: max-content;
   gap: 0.75rem;
   align-items: center;
}

.hero-trust {
   display: grid;
   grid-template-columns: repeat(5, max-content);
   gap: 0.5rem;
   margin-top: 0.25rem;
}

.trust-chip {
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--shade-2);
   background: var(--light-1);
   border: 1px solid rgba(46, 54, 81, 0.15);
   border-radius: 999px;
   padding: 0.4rem 0.75rem;
   box-shadow: 0 10px 24px rgba(9, 37, 77, 0.06);
}

/* =========================
   HERO MEDIA
========================= */
.hero-media {
   grid-column: 8 / -1;
   display: grid;
   gap: 0.9rem;
}

/* Intentional hero “card” image behavior: crop (not stretch) */
.hero-image {
   height: 520px;
   object-fit: cover;
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow);
}

.hero-card {
   background: linear-gradient(135deg,
         rgba(0, 64, 1, 0.96),
         rgba(14, 104, 14, 0.92));
   color: var(--light-1);
   border-radius: var(--radius);
   padding: 1rem 1.1rem;
   box-shadow: 0 18px 40px rgba(6, 13, 48, 0.16);
}

.hero-card-title {
   font-weight: 700;
   margin-bottom: 0.25rem;
}

.hero-card-text {
   margin: 0;
   color: rgba(255, 255, 255, 0.9);
}

/* =========================
   SECTION HEAD
========================= */
.section-head {
   display: grid;
   gap: 0.35rem;
   margin: 1.75rem 0 1rem 0;
}

.section-subtext {
   color: var(--shade-3);
   max-width: 70ch;
   line-height: 1.7;
}

/* =========================
   SERVICES
========================= */
.home-services {
   padding: 1rem 0 0.5rem 0;
}

.service-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.25rem;
   margin-top: 1rem;
}

.service-card {
   grid-column: span 4;
   background: var(--light-1);
   border-radius: var(--radius);
   padding: 1.25rem;
   border: 1px solid rgba(46, 54, 81, 0.10);
   box-shadow: 0 14px 34px rgba(9, 37, 77, 0.08);
}

.service-card p {
   color: var(--shade-3);
   line-height: 1.65;
   margin: 0.25rem 0 0.75rem 0;
}

/* =========================
   SPLIT SECTION
========================= */
.home-split {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.5rem;
   align-items: center;
   padding: 2rem 0;
}

.split-media {
   grid-column: 1 / span 6;
}

.split-image {
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow);
}

.split-copy {
   grid-column: 7 / -1;
   display: grid;
   gap: 0.8rem;
}

.split-copy p {
   color: var(--shade-3);
   line-height: 1.7;
   margin: 0;
}

.split-list {
   margin: 0.25rem 0 0 0;
   padding-left: 1.1rem;
   color: var(--shade-3);
}

/* =========================
   PROCESS
========================= */
.home-process {
   padding: 0.5rem 0 1.25rem 0;
}

.process-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 1.25rem;
   margin-top: 1rem;
}

.step-card {
   grid-column: span 3;
   background: var(--light-2);
   border-radius: var(--radius);
   padding: 1.1rem;
   border: 1px solid rgba(46, 54, 81, 0.10);
   box-shadow: 0 14px 34px rgba(9, 37, 77, 0.06);
}

.step-num {
   font-family: var(--font-2-subheading);
   font-weight: 800;
   color: var(--accent-1);
   margin-bottom: 0.25rem;
}

/* =========================
   CTA BAND
========================= */
.home-cta {
   margin: 2rem 0 1.5rem 0;
   padding: 1.6rem;
   border-radius: var(--radius-xl);
   border: 1px solid rgba(46, 54, 81, 0.10);
   background:
      radial-gradient(1200px 500px at 20% 10%, rgba(255, 180, 0, 0.20), transparent 55%),
      radial-gradient(900px 450px at 90% 20%, rgba(0, 134, 1, 0.18), transparent 60%),
      var(--light-1);
   box-shadow: var(--shadow);
}

.cta-inner {
   display: grid;
   gap: 0.75rem;
}

.cta-inner p {
   margin: 0;
   color: var(--shade-3);
   line-height: 1.7;
}

.cta-actions {
   display: grid;
   grid-auto-flow: column;
   grid-auto-columns: max-content;
   gap: 0.75rem;
   margin-top: 0.25rem;
}

/* =========================
   BUTTON VARIANTS (uses your .btn base)
========================= */
.btn-primary {
   background: var(--color-1);
   color: var(--light-1);
   box-shadow: 0 16px 40px rgba(0, 64, 1, 0.20);
}

.btn-primary:hover {
   background: var(--color-2);
   transform: translateY(-1px);
   box-shadow: 0 22px 55px rgba(0, 64, 1, 0.26);
}

.btn-secondary {
   background: var(--accent-2);
   color: rgba(6, 13, 48, 0.95);
   box-shadow: 0 16px 40px rgba(255, 180, 0, 0.22);
}

.btn-secondary:hover {
   background: var(--accent-3);
   transform: translateY(-1px);
   box-shadow: 0 22px 55px rgba(255, 180, 0, 0.30);
}

.btn-ghost {
   background: transparent;
   color: var(--color-2);
   border-color: rgba(14, 104, 14, 0.35);
}

.btn-ghost:hover {
   border-color: rgba(14, 104, 14, 0.55);
   transform: translateY(-1px);
   box-shadow: 0 18px 45px rgba(9, 37, 77, 0.10);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {

   .hero-copy,
   .hero-media,
   .split-media,
   .split-copy {
      grid-column: 1 / -1;
   }

   .service-card {
      grid-column: span 6;
   }

   .step-card {
      grid-column: span 6;
   }

   .hero-trust {
      grid-template-columns: repeat(3, max-content);
   }

   .hero-image {
      height: 420px;
   }
}

@media (max-width: 768px) {

   .service-card,
   .step-card {
      grid-column: 1 / -1;
   }

   .hero-image {
      height: 360px;
   }

   .hero-cta,
   .cta-actions {
      grid-auto-flow: row;
      grid-auto-columns: 1fr;
      justify-items: start;
   }

   .hero-trust {
      grid-template-columns: repeat(2, max-content);
   }
}.btn {
   display: inline-block;
   border-radius: 999px;
   padding: 0.7rem 1.45rem;
   font-size: 0.96rem;
   font-weight: 600;
   line-height: 1.1;
   border: 2px solid transparent;
   text-decoration: none;
   cursor: pointer;
   user-select: none;
   transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      background-color 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease;
}.site-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 3.75rem;
     background: linear-gradient(135deg,
               var(--color-1) 0%,
               var(--color-3) 55%,
               var(--color-1) 100%);

     /* .site-header>.container {
          height: 6rem;
          align-items: center;
     } */


     /* background: linear-gradient(135deg,
               var(--color-1),
               var(--color-2));
     z-index: 1000; */
}

/* width: 100%;
    padding: 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--color-1); */

.logo-wrapper {
     grid-column: span 2;
     align-self: center;
     padding: 0.4rem 0;
}

/* .vcenter {
     align-items: center;
     padding: 0.4rem 0 0 0;
} */

.logo {
     width: 9rem;
}

.logo-os {
     width: 7rem;
}

.icon-wrapper {
     grid-column: span 2;
     justify-self: end;
     align-self: center;
}

.icon {
     width: 1.9rem;
}

.icon:hover {
     opacity: 0.7;
}


/* MOBILE ======================= */
/* MOBILE ======================= */
/* MOBILE ======================= */

@media (max-width: 960px) {
     .site-header .logo-wrapper {
          grid-column: span 4;
     }

     .site-header .logo {
          width: 8rem;
          height: auto;
     }

     .site-header .icon-wrapper {
          grid-column: span 4;
          justify-self: end;
     }

     .site-header .icon {
          width: 2.5rem;
          height: auto;
     }

}


/* MOBILE ======================= */
/* MOBILE ======================= */

@media (max-width: 768px) {
     .site-header .logo {
          width: 7rem;
          height: auto;
     }

     .site-header .icon {
          width: 2.3rem;
          height: auto;
     }
}header nav {
     grid-column: 3 / span 8;
     display: grid;
     grid-auto-flow: column;
     grid-auto-columns: max-content;
     justify-content: center;
     align-items: center;
     gap: 1rem;
}

header nav a {
     color: var(--light-1);
     font-size: 0.9rem;
     font-weight: 500;
     text-decoration: none;
     background: transparent;
     padding: 0.3rem 1rem;
     border: 1px solid var(--light-1);
     border-radius: 999px;
     transition: background-color 0.45s;
}

header nav a:hover {
     background-color: var(--color-2);
     color: var(--light-1);
}

header nav a:nth-child(5) {
     color: var(--accent-3);
     border: 1px solid var(--accent-3);
}

header nav a:nth-child(5):hover {
     background-color: var(--color-2);
}

/* TOGGLE =================== */
#menu-icon {
     grid-column: span 1;
     font-size: 40px;
     color: var(--light-1);
     z-index: 10001;
     cursor: pointer;
     display: none;
}

/* TOGGLE =================== */


/* MOBILE =================== */
/* MOBILE =================== */
/* MOBILE =================== */

@media (max-width: 960px) {
     header nav {
          /* grid-column: 3 / span 8; */
          display: grid;
          grid-template-columns: 1fr;
          justify-self: center;
          align-self: center;
          position: absolute;
          top: -800px;
          left: 0;
          right: 0;
          text-align: left;
          background: var(--color-2);
          transition: all .50s ease;
          margin: 1rem;
          padding: 1rem;
          border: 1px solid var(--light-1);
          border-radius: 5px;
     }

     header nav a {
          /* grid-column: span 4; */
          display: block;
          font-size: 1rem;
          font-weight: 600;
          color: var(--light-1);
          background: var(--color-1);
          margin: 0.25rem;
          padding: 0.5rem 1.5rem;
          border: 1px solid var(--light-1);
          border-radius: 20px;
     }

     header nav a:hover {
          background: var(--color-3);
     }

     header nav a:nth-child(5):hover {
          background: var(--color-3);
     }

     /* TOGGLE =================== */
     #menu-icon {
          grid-column: span 4;
          justify-self: center;
          display: block;
     }

     nav.open {
          grid-column: 4 / span 6;
          top: 100%;
          right: 2%;
     }

     /* TOGGLE =================== */
}


/* MOBILE 2 =================== */
/* MOBILE 2 =================== */

@media (max-width: 768px) {
     header nav {
          gap: 0rem;
          border-radius: 0.7rem;
     }

     header nav a {
          /* font-size: 0.8rem; */
          padding: 0.1rem 1.5rem;
     }

     header nav a:nth-child(5) {
          color: var(--color-1);
     }

     /* TOGGLE =================== */
     nav.open {
          grid-column: span 12;
          top: 100%;
          /* right: 2%; */
     }

     /* TOGGLE =================== */
}.nav-2 {
   grid-column: 2 / span 10;
   display: grid;
   grid-auto-flow: column;
   grid-auto-columns: max-content;
   justify-content: center;
   gap: 1.25rem;
   font-size: 0.85rem;
   margin: 0.5rem;
   padding: 0.75rem 0 0 0;
}

.nav-2 a {
   color: var(--color-1);
   text-decoration: none;
   font-weight: 500;
   padding: 0.2rem 1rem;
   background-color: var(--light-1);
   border: 1px solid var(--shade-7);
   border-radius: 0.35rem;
   box-shadow: var(--shadow-btn);
   transition:
      box-shadow 0.25s ease,
      transform 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease;
}

.nav-2 a:hover {
   color: var(--light-1);
   border-color: var(--light-1);
   box-shadow: var(--shadow-btn-hover);
   transform: translateY(-3px);
}



@media (max-width: 960px) {
   .nav-2 {
      grid-column: span 12;
      grid-auto-flow: row;
      justify-content: flex-start;
      gap: 0.25rem;
      font-size: 0.8rem;
   }

   .nav-2 a {
      padding: 0.1rem 0;
   }
}footer {
     width: 100%;
     color: var(--light-1);
     font-size: 0.8rem;
     background-color: var(--color-1);
     margin-top: 2rem;
     padding: 1rem 0 2rem 0;
}

.copyright-wrapper {
     align-items: center;
     margin-top: 1rem;
}

.copyright-wrapper div {
     grid-column: span 3;
     text-align: center;
}

/* .copyright {
     grid-column: span 3;
     text-align: center;
} */

.sectigo {
     max-width: 7rem;
     justify-self: center;
}


/* =========================
   TABLET
========================= */

@media (max-width: 960px) {}

/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {
     footer {
          font-size: 0.7rem;
     }

     .copyright {
          grid-column: span 12;
     }

     .sectigo {
          grid-column: span 12;
          max-width: 5rem;
     }
}.links-wrapper {
   grid-column: span 3;
   background-color: var(--bg-footer);
   padding: 1rem 1rem 1rem 2rem;
}

.links-topic {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--accent-6);
   margin-bottom: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.links {
   display: grid;
   gap: 0.5rem;
   align-content: start;
   margin: 0;
   padding: 0;
}


/* Optional: styling for the links themselves */
.links a {
   display: inline-block;
   font-size: 0.9rem;
   text-decoration: none;
   color: var(--text-muted, #d4dbe6);
}

.links a:hover {
   color: var(--accent-1, #0097d6);
   text-decoration: underline;
}

.links-2 {
   grid-column: span 3;
   display: grid;
   /* grid-template-columns: 1fr; */
   gap: 0.5rem;
   /* max-width: 100%; */
   background-color: var(--shade-3);
   padding: 1rem 1rem 1rem 2rem;
}

.links h2 {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--accent-6);
}

.links a {
   color: var(--shade-6);
   cursor: pointer;
}

.links a:hover {
   color: var(--accent-5);
   cursor: pointer;
}



/* =========================
   TABLET
========================= */

@media (max-width: 960px) {}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
   .links {
      grid-column: span 12;
      padding: 1rem 2rem;
   }
}