/* =============================================
   J THEME - MAIN.CSS
   Global styles shared across all templates
   All font sizes minimum 1rem
   All font weights minimum 620
   ============================================= */
/* FONT */
@font-face {
  font-family: 'Aller';
  src: url('https://23861612.fs1.hubspotusercontent-na1.net/hubfs/23861612/Website%20Assets/Aller/aller.regular-1.ttf') format('woff2'),
       url('https://23861612.fs1.hubspotusercontent-na1.net/hubfs/23861612/Website%20Assets/Aller/aller.regular-1.ttf') format('woff');
  font-weight: 620;
  font-style: normal;
}

@font-face {
  font-family: 'Aller';
  src: url('https://23861612.fs1.hubspotusercontent-na1.net/hubfs/23861612/Website%20Assets/Aller/aller.regular-1.ttf') format('woff2'),
       url('https://23861612.fs1.hubspotusercontent-na1.net/hubfs/23861612/Website%20Assets/Aller/aller.regular-1.ttf') format('woff');
  font-weight: 620;
  font-style: normal;
}
/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ROOT VARIABLES */
:root {
  --navy: #083E66;
  --orange: #E35205;
  --charcoal: #43505D;
  --lightbg: #E2EBF2;
  --white: #fff;
  --font: system-ui, -apple-system, sans-serif;
}

/* BASE */
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  font-size: 1rem;
  font-weight: 620;
}

a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 620;
}

a:hover {
  color: var(--navy);
}

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

p {
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.65;
}

li {
  font-size: 1rem;
  font-weight: 620;
}

/* PAGE CONTAINER */
.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* EYEBROW */
.eyebrow {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  font-weight: 620;
  margin-bottom: .5rem;
}

/* SECTION */
.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 620;
}

.divider {
  border: none;
  border-top: .5px solid #d0dde8;
  margin: 0;
}

/* BUTTONS */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #c94804;
  color: var(--white);
}

.btn-outline {
  border: 1.5px solid #a8c4db;
  color: #a8c4db;
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  border: 1.5px solid #a8c4db;
  color: #a8c4db;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-banner img {
  height: 75px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 620;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-cta:hover {
  background: #c94804;
}

.nav-support {
  border: 1.5px solid var(--navy);
  color: var(--navy) !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-support:hover {
  background: var(--navy);
  color: var(--white) !important;
}

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

.hero {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
}

.hero-banner {
  margin: 0 auto 1.5rem;
  max-width: 538px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 620;
  color: var(--white);
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto .75rem;
}

.hero p {
  font-size: 1rem;
  color: #a8c4db;
  max-width: 580px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
  font-weight: 620;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   STAT STRIP
   ============================================= */

.stat-strip {
  background: var(--lightbg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stat-cell {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: .5px solid #c5d5e2;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 620;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--charcoal);
  margin-top: .3rem;
  line-height: 1.3;
  font-weight: 620;
}

/* =============================================
   IMAGE BREAK
   ============================================= */

.img-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
}

.img-break.reverse {
  direction: rtl;
}

.img-break.reverse > * {
  direction: ltr;
}

.img-break img {
  border-radius: 6px;
  width: 100%;
}

.img-break-text p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: .75rem;
  font-weight: 620;
}

.img-break-text h3 {
  font-size: 1.1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

/* =============================================
   FEATURE LIST
   ============================================= */

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: .75rem;
}

.feature-list li {
  font-size: 1rem;
  padding: .4rem 0 .4rem 1.1rem;
  border-bottom: .5px solid #d0dde8;
  color: var(--charcoal);
  position: relative;
  line-height: 1.45;
  font-weight: 620;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
  font-size: 1.2em;
}

/* =============================================
   TWO COLUMN
   ============================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}

.two-col img {
  border-radius: 6px;
  width: 100%;
}

.two-col-text p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: .85rem;
  font-weight: 620;
}

.two-col-text a {
  font-size: 1rem;
  font-weight: 620;
  color: var(--orange);
}

/* =============================================
   TWO COLUMN CARDS
   ============================================= */

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.col-card {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 1.5rem;
}

.col-card.solution {
  background: var(--navy);
  color: var(--white);
}

.col-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 620;
  margin-bottom: .85rem;
  color: var(--orange);
}

.col-card.solution h3 {
  color: #a8c4db;
}

.col-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: .85rem;
  font-weight:620;
}

.col-card ul {
  list-style: none;
  padding: 0;
}

.col-card ul li {
  font-size: 1rem;
  padding: .4rem 0 .4rem 1.1rem;
  border-bottom: .5px solid #c5d5e2;
  color: var(--charcoal);
  position: relative;
  line-height: 1.45;
  font-weight: 620;
}

.col-card ul li:last-child {
  border-bottom: none;
}

.col-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

.col-card.solution ul li {
  border-bottom-color: rgba(255,255,255,.12);
  color: #c8d8e6;
}

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

.cta-block {
  background: var(--navy);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-block h2 {
  font-size: 1.25rem;
  font-weight: 620;
  color: var(--white);
  margin-bottom: .5rem;
}

.cta-block p {
  font-size: 1rem;
  color: #a8c4db;
  margin-bottom: 1.35rem;
  line-height: 1.55;
  font-weight: 620;
}

/* =============================================
   DARK CALLOUT
   ============================================= */

.dark-callout {
  background: var(--navy);
  border-radius: 6px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.dark-callout h3 {
  font-size: 1.05rem;
  font-weight: 620;
  color: var(--white);
  margin-bottom: .5rem;
}

.dark-callout p {
  font-size: 1rem;
  color: #a8c4db;
  line-height: 1.65;
  margin-bottom: .75rem;
  font-weight: 620;
}

.dark-callout a {
  color: var(--white);
  font-weight: 620;
  text-decoration: underline;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 1.25rem;
  border-left: 3px solid var(--orange);
}

.testimonial blockquote {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: .75rem;
  font-style: italic;
  font-weight: 620;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.testimonial-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial .attr {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
}

.testimonial .org {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 620;
}

/* =============================================
   CLIENT LOGOS
   ============================================= */

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--lightbg);
  border-radius: 6px;
}

.client-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: .85;
}

.client-logos img:hover {
  opacity: 1;
}

/* =============================================
   CASE STUDY CARDS
   ============================================= */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cs-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.25rem;
  background: var(--white);
}

.cs-card .cs-sector {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  font-weight: 620;
  margin-bottom: .4rem;
}

.cs-card h4 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.cs-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: .85rem;
  font-weight: 620;
}

.cs-link {
  font-size: 1rem;
  font-weight: 620;
  color: var(--orange);
}

/* =============================================
   OUTCOMES TABLE
   ============================================= */

.outcomes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 1rem;
}

.outcomes-table th {
  text-align: left;
  padding: .65rem .85rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  background: var(--navy);
  font-weight: 620;
}

.outcomes-table td {
  padding: .7rem .85rem;
  border-bottom: .5px solid #d0dde8;
  color: var(--charcoal);
  vertical-align: middle;
  font-weight: 620;
}

.outcomes-table tr:last-child td {
  border-bottom: none;
}

.outcomes-table td:first-child {
  font-weight: 620;
  color: var(--navy);
}

.tag-before {
  background: #f5e6e2;
  color: #993c1d;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  display: inline-block;
  font-weight: 620;
}

.tag-after {
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  display: inline-block;
  font-weight: 620;
}

/* =============================================
   SOLUTIONS CARD GRID
   ============================================= */

.solutions-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.solution-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.solution-card-header {
  margin-bottom: .75rem;
}

.solution-card-header h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  line-height: 1.35;
  margin-top: .3rem;
}

.solution-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: .75rem;
  font-weight: 620;
}

.solution-card-divider {
  border: none;
  border-top: .5px solid #d0dde8;
  margin: .85rem 0;
}

.solution-card .practice-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--charcoal);
  font-weight: 620;
  margin-bottom: .5rem;
}

/* =============================================
   SERVICE CARDS
   ============================================= */

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.service-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--lightbg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.service-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: .85rem;
  flex: 1;
  font-weight: 620;
}

.service-card-divider {
  border: none;
  border-top: .5px solid #d0dde8;
  margin: .85rem 0;
}

.service-card .delivers-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--charcoal);
  font-weight: 620;
  margin-bottom: .5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 1rem;
  padding: .35rem 0 .35rem 1rem;
  border-bottom: .5px solid #eef2f5;
  color: var(--charcoal);
  position: relative;
  line-height: 1.4;
  font-weight: 620;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

.service-card .card-link {
  font-size: 1rem;
  font-weight: 620;
  color: var(--orange);
  margin-top: .85rem;
  display: inline-block;
}

/* =============================================
   CAPABILITY CARDS
   ============================================= */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.cap-card {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 1.5rem;
}

.cap-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .75rem;
}

.cap-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 620;
}

.cap-card ul {
  list-style: none;
  padding: 0;
  margin-top: .75rem;
}

.cap-card ul li {
  font-size: 1rem;
  padding: .35rem 0 .35rem 1rem;
  border-bottom: .5px solid #c5d5e2;
  color: var(--charcoal);
  position: relative;
  line-height: 1.4;
  font-weight: 620;
}

.cap-card ul li:last-child {
  border-bottom: none;
}

.cap-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

/* =============================================
   GIF PAIR
   ============================================= */

.gif-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.gif-card {
  background: var(--lightbg);
  border-radius: 6px;
  overflow: hidden;
}

.gif-card img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.gif-card-text {
  padding: 1rem 1.25rem;
}

.gif-card-text .gif-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--orange);
  font-weight: 620;
  margin-bottom: .4rem;
}

.gif-card-text p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.55;
  font-weight: 620;
}

/* =============================================
   INTEGRATION BLOCK
   ============================================= */

.integration-block {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 2rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.integration-block img {
  width: 100%;
  border-radius: 6px;
}

.integration-text h3 {
  font-size: 1.05rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
}

.integration-text p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 620;
}

.integration-logo {
  margin-bottom: 1rem;
}

.integration-logo img {
  height: 36px;
  width: auto;
}

/* =============================================
   TIER CARDS
   ============================================= */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.tier-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border: 2px solid var(--navy);
}

.tier-card h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .25rem;
}

.tier-card .tier-sub {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: .5px solid #d0dde8;
  font-weight: 620;
}

.tier-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
}

.tier-card ul li {
  font-size: 1rem;
  padding: .35rem 0 .35rem 1rem;
  border-bottom: .5px solid #eef2f5;
  color: var(--charcoal);
  position: relative;
  line-height: 1.4;
  font-weight: 620;
}

.tier-card ul li:last-child {
  border-bottom: none;
}

.tier-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

.tier-card .tier-cta {
  margin-top: 1.25rem;
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 9px 0;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 620;
  text-decoration: none;
}

.tier-card .tier-cta:hover {
  background: var(--orange);
}

.tier-note {
  font-size: 1rem;
  color: var(--charcoal);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  font-weight: 620;
}

/* =============================================
   PRINCIPLES GRID
   ============================================= */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.principle-card {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
}

.principle-card h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
}

.principle-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 620;
}

/* =============================================
   PHOTO GALLERY
   ============================================= */

.gallery-quote {
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 620;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .85rem;
  margin-top: 1rem;
}

.gallery-grid img {
  border-radius: 6px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* =============================================
   INCLUDED BLOCK
   ============================================= */

.included-block {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.included-block h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .5rem;
}

.included-block .included-sub {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 620;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem 2rem;
  list-style: none;
  padding: 0;
}

.included-grid li {
  font-size: 1rem;
  padding: .35rem 0 .35rem 1rem;
  border-bottom: .5px solid #c5d5e2;
  color: var(--charcoal);
  position: relative;
  line-height: 1.45;
  font-weight: 620;
}

.included-grid li:last-child {
  border-bottom: none;
}

.included-grid li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

.included-note {
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
  margin-top: 1rem;
  font-weight: 620;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.form-panel {
  background: var(--white);
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 2rem;
}

.form-panel h2 {
  font-size: 1.1rem;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-panel .form-sub {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 620;
}

.form-embed {
  min-height: 500px;
}

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details {
  background: var(--lightbg);
  border-radius: 6px;
  padding: 1.5rem;
}

.contact-details h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: .5px solid #c5d5e2;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row-text .label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--charcoal);
  font-weight: 620;
  margin-bottom: .2rem;
}

.contact-row-text p,
.contact-row-text a {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
  display: block;
  font-weight: 620;
}

.contact-row-text a:hover {
  color: var(--orange);
}

.expect-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 1.5rem;
}

.expect-card h3 {
  font-size: 1rem;
  font-weight: 620;
  color: var(--white);
  margin-bottom: .85rem;
}

.expect-card ul {
  list-style: none;
  padding: 0;
}

.expect-card ul li {
  font-size: 1rem;
  padding: .4rem 0 .4rem 1.1rem;
  border-bottom: .5px solid rgba(255,255,255,.12);
  color: #c8d8e6;
  position: relative;
  line-height: 1.45;
  font-weight: 620;
}

.expect-card ul li:last-child {
  border-bottom: none;
}

.expect-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 620;
}

.meeting-card 
{ background: var(--lightbg);
 border-radius: 6px;
 padding: 1.5rem;
 text-align: center; 
display: flex; 
flex-direction: column; 
align-items: center;
 justify-content: center; 
gap: .75rem; }

.meeting-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 620;
}

.support-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--white);
}

.support-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .85rem;
}

.support-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.support-link {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 620;
  text-decoration: none;
}

.support-link:hover {
  color: var(--navy);
}

.bottom-cards-row 
{ display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 1.25rem;
 margin-top: 1.25rem; 
width: 100%; 
}
/* =============================================
   TICKET PAGE
   ============================================= */

.form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.resource-card {
  border: .5px solid #c5d5e2;
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--white);
}

.resource-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 620;
  color: var(--navy);
  margin-bottom: .85rem;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.resource-link {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 620;
  text-decoration: none;
}

.resource-link:hover {
  color: var(--navy);
}

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

.footer {
  background: var(--charcoal);
  padding: 1.5rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.footer h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #a8b4be;
  margin-bottom: .60rem;
  font-weight: 620;
}

.footer p {
  font-size: 1rem;
  color: #c8d2d8;
  line-height: 1.85;
  display: block;
  font-weight: 620;
}

.footer a {
  font-size: 1rem;
  color: #c8d2d8;
  line-height: 1.85;
  display: block;
  text-decoration: none;
  font-weight: 620;
}

.footer a:hover {
  color: var(--white);
}

.footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #a8b4be;
  padding-top: 1.75rem;
  max-width: 1280px;
  margin: 1.rem auto 0;
  border-top: .5px solid rgba(255,255,255,.1);
  font-weight: 620;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .service-card-grid,
  .solutions-card-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 620px) {
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .img-break,
  .img-break.reverse,
  .two-col,
  .two-col-cards,
  .gif-pair,
  .integration-block {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell {
    border-right: none;
    border-bottom: .5px solid #c5d5e2;
  }

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

  .service-card-grid,
  .solutions-card-grid {
    grid-template-columns: 1fr;
  }

  .bottom-cards-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
     }
  @media (max-width: 640px) {
  .bottom-cards-row {
    grid-template-columns: 1fr;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/