/* ============================
   GLOBAL RESET + LAYOUT
============================ */

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

:root {
  --site-max-width: 1200px;
  --site-padding-x: 40px;
  --site-padding-x-mobile: 20px;
  --header-height: 90px;
}

html {
  height: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100%;
  font-family: "Inter", sans-serif;
  padding-top: var(--header-height);
  color: #111827;
  background: #ffffff;
}

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

.site-container,
.header-container,
.home-hero-inner,
.solutions-page-hero-inner,
.industries-hero-content,
.about-hero-content,
.footer-container,
.industries-secure-container,
.industries-grid-container,
.about-container,
.about-leadership-inner,
.solutions-fluent-container,
.features-grid,
.features-header {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-left: var(--site-padding-x);
  padding-right: var(--site-padding-x);
}

@media (max-width: 768px) {
  .site-container,
  .header-container,
  .home-hero-inner,
  .solutions-page-hero-inner,
  .industries-hero-content,
  .about-hero-content,
  .footer-container,
  .industries-secure-container,
  .industries-grid-container,
  .about-container,
  .about-leadership-inner,
  .solutions-fluent-container,
  .features-grid,
  .features-header {
    padding-left: var(--site-padding-x-mobile);
    padding-right: var(--site-padding-x-mobile);
  }
}

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

.site-header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.logo {
  display: inline-block;
}

.logo img {
  height: 50px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #1a237e;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #0b62ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-demo {
  background-color: #0b62ff;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-demo:hover {
  background-color: #004de6;
}

.btn-login {
  border: 2px solid #0b62ff;
  color: #0b62ff;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background-color: #0b62ff;
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a237e;
  display: block;
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  background: #ffffff;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #eee;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #1a237e;
}

.mobile-nav a:hover {
  color: #0b62ff;
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo img {
    height: 40px;
  }
}

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

.home-hero {
  position: relative;
  min-height: 520px;
  background: url("../media/LIC-Hero-Background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: #ffffff;
  width: 100%;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 34, 84, 0.85),
    rgba(14, 34, 84, 0.55),
    rgba(14, 34, 84, 0.25)
  );
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.home-hero-left {
  max-width: 640px;
}

.home-tagline {
  color: #56d7ff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.home-subheadline {
  margin: 0 0 26px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.home-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.home-btn-primary {
  background: #56d7ff;
  color: #0b1b3a;
  border: 2px solid transparent;
}

.home-btn-primary:hover {
  background: #3cccfb;
}

.home-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.home-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.home-hero-right {
  justify-self: end;
}

.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.home-card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 800;
  color: #0b1b3a;
}

.home-card p {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(11, 27, 58, 0.75);
}

.home-card-secure {
  grid-column: 1;
  margin-top: 34px;
}

.home-card-sovereign {
  grid-column: 2;
}

.home-card-customizable {
  grid-column: 2;
}

@media (max-width: 980px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-tagline {
    font-size: 28px;
  }

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

  .home-card-secure,
  .home-card-sovereign,
  .home-card-customizable {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding: 16px 0;
    min-height: auto;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .home-hero-left {
    max-width: 344px;
  }

  .home-tagline {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .home-subheadline {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .home-cta {
    gap: 8px;
  }

  .home-btn {
    min-height: 32px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .home-hero-right {
    justify-self: start;
    width: 100%;
  }

  .home-cards {
    gap: 12px;
  }

  .home-card {
    padding: 16px;
  }
}

/* ============================
   INTRO CALLOUT
============================ */

.intro-callout {
  background-color: #f4f5f8;
  padding: 80px 0;
  text-align: center;
  width: 100%;
}

.intro-callout .site-container {
  max-width: 1200px;
}

.intro-callout .section-eyebrow {
  color: #0075ff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.intro-callout .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.intro-callout .section-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: #374151;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 560px;
  text-align: left;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
  color: #111827;
  line-height: 1.5;
}

.feature-list img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.intro-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cards-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 28px 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.feature-card .section-eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  color: #2563eb;
}

.feature-card .section-title {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111827;
}

/* Responsive */

@media (max-width: 900px) {
  .cards-layout {
    grid-template-columns: 1fr;
  }

  .intro-callout .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .intro-callout {
    padding: 60px 0;
  }

  .intro-callout .section-title {
    font-size: 1.6rem;
  }

  .intro-callout .section-subtitle {
    font-size: 0.98rem;
  }

  .feature-card {
    padding: 22px 18px;
  }
}

/* ============================
   FEATURES
============================ */

.cards-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

.feature-card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-top: 0.5rem;
}

.features {
  background: linear-gradient(to bottom, #2c3e91, #506ccf);
  color: white;
  padding: 4rem 0;
  text-align: center;
  width: 100%;
}

.features-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  color: #00bfff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: white;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.feature-card {
  background-color: white;
  color: black;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-img {
  width: 100%;
  height: auto;
}

.feature-content {
  padding: 1.5rem;
  text-align: left;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
}

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

.testimonials-video {
  background-color: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
  padding-top: 100px;
}

.testimonial-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.cta-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
  width: 100%;
}

.cta-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.cta-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: #0e1a2b;
}

.cta-heading .highlight {
  color: #2563eb;
}

.cta-heading p {
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
}

/* HubSpot form wrapper */

.cta-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #273375;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(20, 38, 87, 0.16);
  text-align: left;
}

/* HubSpot iframe/container */

.cta-form-wrap .hs-form-frame {
  width: 100%;
}

/* Fallback styling if HubSpot outputs regular form markup */

.cta-form-wrap .hs-form {
  width: 100%;
}

.cta-form-wrap .hs-form-field {
  margin-bottom: 18px;
}

.cta-form-wrap label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-form-wrap input,
.cta-form-wrap select,
.cta-form-wrap textarea {
  width: 100%;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  color: #4b5563;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  padding: 14px 16px;
  box-sizing: border-box;
}

.cta-form-wrap input::placeholder,
.cta-form-wrap textarea::placeholder {
  color: #9ca3af;
}

.cta-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-form-wrap .hs-button,
.cta-form-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: #0b62ff;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-form-wrap .hs-button:hover,
.cta-form-wrap input[type="submit"]:hover {
  background: #004de6;
  transform: translateY(-1px);
}

.cta-form-wrap .hs-error-msg,
.cta-form-wrap .hs-main-font-element {
  font-size: 0.9rem;
}

.cta-form-wrap .hs-error-msg {
  color: #ffd6d6;
}

.cta-form-wrap .legal-consent-container,
.cta-form-wrap .hs-richtext,
.cta-form-wrap .submitted-message {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-heading {
    margin-bottom: 28px;
  }

  .cta-heading h2 {
    font-size: 2rem;
  }

  .cta-heading p {
    font-size: 1rem;
  }

  .cta-form-wrap {
    padding: 22px 18px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .cta-heading h2 {
    font-size: 1.75rem;
  }

  .cta-form-wrap {
    padding: 18px 16px;
  }
}

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

.site-footer {
  background: #142657;
  color: #ffffff;
  padding: 60px 0 25px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  max-width: 480px;
}

.footer-logo img {
  height: 42px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials:empty {
  display: none;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
}

.footer-right {
  text-align: right;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7aa2ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    text-align: left;
  }
}

/* ============================
   SOLUTIONS PAGE HERO
============================ */

.solutions-page-hero {
  position: relative;
  height: 200px;
  background: url("../media/LIC-Hero-Background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
}

.solutions-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 34, 84, 0.75),
    rgba(14, 34, 84, 0.45),
    rgba(14, 34, 84, 0.2)
  );
  z-index: 1;
}

.solutions-page-hero-inner {
  position: relative;
  z-index: 2;
}

.solutions-page-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .solutions-page-hero {
    height: 170px;
  }

  .solutions-page-hero h1 {
    font-size: 40px;
  }
}

/* ============================
   SOLUTIONS - FLUENT
============================ */

.solutions-fluent {
  background: #ffffff;
  padding: 5.5rem 0 6.5rem;
  width: 100%;
}

.solutions-fluent-container {
  max-width: 860px;
}

.fluent-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  color: #0b62ff;
}

.fluent-title {
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.fluent-lead {
  margin-bottom: 3.2rem;
  max-width: 720px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.85;
  color: #1f2937;
}

.fluent-section {
  margin-bottom: 3.25rem;
}

.fluent-section-last {
  margin-bottom: 0;
}

.fluent-heading {
  margin-bottom: 1rem;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.fluent-body {
  margin-bottom: 1.25rem;
  max-width: 760px;
  font-size: 1.03rem;
  line-height: 1.9;
  color: #374151;
}

.fluent-list {
  margin-top: 0.25rem;
  padding-left: 1.4rem;
}

.fluent-list li {
  margin-bottom: 0.65rem;
  font-size: 1.03rem;
  line-height: 1.85;
  color: #374151;
}

@media (max-width: 768px) {
  .solutions-fluent {
    padding: 4.25rem 0 5rem;
  }

  .fluent-eyebrow {
    font-size: 2.2rem;
  }

  .fluent-title {
    font-size: 2.1rem;
  }

  .fluent-heading {
    font-size: 1.5rem;
  }

  .fluent-lead {
    font-size: 1.05rem;
  }
}

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

.industries-hero {
  position: relative;
  height: 220px;
  background: url("../media/LIC-Hero-Background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  width: 100%;
}

.industries-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 34, 84, 0.85),
    rgba(14, 34, 84, 0.55),
    rgba(14, 34, 84, 0.25)
  );
  z-index: 1;
}

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

.industries-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
}

/* ============================
   INDUSTRIES SECURE SECTION
============================ */

.industries-secure {
  background: #f6f8fb;
  padding: 7rem 0 6rem;
  text-align: center;
  margin-top: 6rem;
  width: 100%;
}

.industries-secure-container {
  max-width: 850px;
}

.secure-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2563eb;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.industries-secure h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.secure-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #374151;
}

.secure-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.secure-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.secure-list img {
  width: 20px;
  margin-top: 3px;
}

/* ============================
   INDUSTRIES GRID
============================ */

.industries-grid {
  padding: 80px 0;
  background: #ffffff;
  width: 100%;
}

.industries-grid-header {
  text-align: center;
  margin-bottom: 50px;
}

.industries-eyebrow {
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.industries-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  background: #f5f7fb;
  border: 1px solid #e5ecf6;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.industry-card img {
  width: 42px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.industry-card.active {
  background: #cfe5ff;
  border-color: #93c5fd;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .industries-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-grid {
    padding: 60px 0;
  }

  .industries-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

.about-hero {
  position: relative;
  height: 220px;
  background: url("../media/LIC-Hero-Background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 34, 84, 0.85),
    rgba(14, 34, 84, 0.55),
    rgba(14, 34, 84, 0.25)
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
}

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

.about-section {
  padding: 80px 0;
  background: #ffffff;
  width: 100%;
}

.about-container {
  max-width: 900px;
  padding-top: 0;
  padding-bottom: 0;
}

.about-container h2 {
  font-size: 28px;
  margin: 40px 0 15px;
  color: #0e2154;
}

.about-container p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.about-container ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-container li {
  margin-bottom: 10px;
}

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

.about-values {
  background: #f5f7fb;
  padding: 48px 0 80px;
  width: 100%;
}

.about-values .about-container h2 {
  margin-top: 0;
}

.about-values h3 {
  margin-top: 30px;
  font-size: 20px;
}

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

.about-leadership {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.about-leadership-inner {
  max-width: 900px;
}

.about-leadership h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 50px;
}

.leader-item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 50px;
}

.leader-item img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.leader-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.leader-info p {
  font-size: 17px;
  color: #4b5563;
}

@media (max-width: 768px) {
  .leader-item {
    flex-direction: column;
    text-align: center;
  }
}

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

.about-news {
  background-color: #f6f8fb;
  padding: 80px 0 120px;
  width: 100%;
}

.about-news h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #0e1a2b;
}

.news-article {
  max-width: 900px;
  color: #1f2937;
}

.news-article-title {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #0e1a2b;
  margin-bottom: 28px;
}

.news-article-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #111827;
  margin-bottom: 24px;
}

.news-article p {
  font-size: 17px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 22px;
}

.news-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.8;
  color: #1f2937;
}

.news-subheading {
  font-size: 24px;
  font-weight: 800;
  color: #0e1a2b;
  margin: 40px 0 16px;
}

.news-learn-more a,
.news-contact a {
  color: #0b62ff;
  text-decoration: none;
}

.news-learn-more a:hover,
.news-contact a:hover {
  text-decoration: underline;
}

.news-contact {
  margin-top: 24px;
}

.news-contact p {
  margin-bottom: 8px;
}

.news-contact-separator {
  display: inline-block;
  margin: 0 10px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .about-news {
    padding: 60px 0 90px;
  }

  .about-news h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .news-article-title {
    font-size: 28px;
  }

  .news-article-lead {
    font-size: 18px;
  }

  .news-article p,
  .news-quote {
    font-size: 16px;
  }

  .news-subheading {
    font-size: 22px;
  }

  .news-contact-separator {
    display: none;
  }
}

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

.about-careers {
  background-color: #ffffff;
  padding: 80px 0;
  margin-bottom: 60px;
  width: 100%;
}

.about-careers h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0e1a2b;
}

.about-careers h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0e1a2b;
}

.about-careers p {
  font-size: 16px;
  color: #4a5568;
  max-width: 700px;
  margin-bottom: 24px;
}

.about-careers h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-careers-list {
  list-style: disc;
  padding-left: 20px;
}

.about-careers-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0e1a2b;
}

/* ============================
   404 PAGE
============================ */

.lic-404 {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 72px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1a44 0%, #15367a 100%);
}

.lic-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 70% 22%, rgba(34, 211, 238, 0.1), transparent 60%),
    radial-gradient(700px 420px at 30% 78%, rgba(59, 130, 246, 0.16), transparent 60%),
    linear-gradient(180deg, #142d73 0%, #243e8f 100%);
}

.lic-404__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
}

.lic-404__content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  text-align: center;
}

.lic-404__mark {
  position: absolute;
  left: 50%;
  top: -110px;
  transform: translateX(-50%);
  width: min(560px, 82vw);
  max-width: 560px;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}

.lic-404__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #11d9ff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.lic-404__text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.lic-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #0d3a4b;
  background: #22d3ee;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.18);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.lic-404__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.22);
}

.lic-404__btn:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .lic-404 {
    min-height: calc(100vh - 80px);
    padding: 56px 16px;
    align-items: start;
  }

  .lic-404__content {
    width: min(344px, 100%);
    margin-top: 8px;
  }

  .lic-404__mark {
    top: -58px;
    width: 270px;
    opacity: 0.12;
  }

  .lic-404__title {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.05;
  }

  .lic-404__text {
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.45;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .lic-404__btn {
    min-height: 28px;
    padding: 0 14px;
    font-size: 10px;
  }
}
/* ============================
   CONTACT PAGE
============================ */

.contact-section {
  padding: 80px 0 120px;
  background: #ffffff;
}

.contact-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.contact-heading h1 {
  font-size: 44px;
  font-weight: 800;
  color: #0e1a2b;
  margin-bottom: 14px;
}

.contact-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* HubSpot form styling */

.contact-form-wrap form {
  font-family: "Inter", sans-serif;
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 12px;
  font-size: 14px;
}

.contact-form-wrap .hs-button {
  background: #2563eb;
  color: white;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  border: none;
}
/* Contact Us*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lic-blue: #0B62FF;
  --lic-dark-blue: #142657;
  --lic-text: #0E1A2B;
  --lic-body: #4B5563;
  --lic-border: #D1D5DB;
  --lic-bg: #F8FAFC;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--lic-text);
}

.contact-page {
  width: 100%;
}

.contact-section {
  padding: 80px 20px 100px;
  background: #ffffff;
}

.contact-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.contact-heading h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--lic-text);
}

.contact-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--lic-body);
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(20, 38, 87, 0.08);
}

/* HubSpot wrapper */
.hs-form-frame {
  width: 100%;
  min-height: 240px;
}

/* Fallback styling if HubSpot outputs normal markup */
.hs-form-frame form {
  font-family: "Inter", sans-serif !important;
}

.hs-form-frame fieldset {
  max-width: 100% !important;
}

.hs-form-frame .hs-form-field {
  margin-bottom: 18px;
}

.hs-form-frame label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lic-text);
  margin-bottom: 8px;
}

.hs-form-frame input,
.hs-form-frame textarea,
.hs-form-frame select {
  width: 100% !important;
  border: 1px solid var(--lic-border) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: var(--lic-body) !important;
  font-size: 15px !important;
  font-family: "Inter", sans-serif !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
}

.hs-form-frame input:focus,
.hs-form-frame textarea:focus,
.hs-form-frame select:focus {
  outline: none !important;
  border-color: var(--lic-blue) !important;
}

.hs-form-frame textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder {
  color: #9CA3AF;
}

.hs-form-frame .hs-button,
.hs-form-frame input[type="submit"] {
  appearance: none;
  border: none !important;
  border-radius: 999px !important;
  background: var(--lic-blue) !important;
  color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hs-form-frame .hs-button:hover,
.hs-form-frame input[type="submit"]:hover {
  background: #004DE6 !important;
  transform: translateY(-1px);
}

.hs-form-frame .submitted-message,
.hs-form-frame .hs-error-msg,
.hs-form-frame .hs-richtext,
.hs-form-frame .legal-consent-container {
  font-family: "Inter", sans-serif !important;
  color: var(--lic-body);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px 80px;
  }

  .contact-heading h1 {
    font-size: 34px;
  }

  .contact-heading p {
    font-size: 16px;
  }

  .contact-form-wrap {
    padding: 20px;
    border-radius: 16px;
  }
}