@font-face {
  font-family: "Glacial Indifference";
  src: url("../fonts/GlacialIndifference-Regular.woff") format("woff"),
       local("Glacial Indifference"), local("GlacialIndifference-Regular");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("../fonts/GlacialIndifference-Bold.woff") format("woff"),
       local("Glacial Indifference Bold"), local("GlacialIndifference-Bold");
  font-weight: 700 900;
  font-display: swap;
}



:root {
  --blue: #0250CE;
  --blue-dark: #054ab0;
  --ink: #1a2540;
  --muted: #667085;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --panel: #eaf2ff;
  --white: #fff;
  --shadow: 0 12px 30px rgba(16, 36, 75, .08);
  font-family: "Glacial Indifference", "Poppins", "Segoe UI", Arial, sans-serif;
}



.text-white {
  color: white !important;
}



* {
  box-sizing: border-box;
}



body {
  margin: 0;
  color: var(--ink);
  background: #f2f2f2;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {font-family: inherit;font-weight: 700;line-height: 1.2;color: var(--ink);margin: 0;}
h1 {font-size: 48px;}
h2 {font-size: 42px;}
h3 {font-size: 28px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}



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



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



button,
input,
select {
  font: inherit;
}



i[data-lucide]::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-radius: 50%;
  vertical-align: -.12em;
}



i[data-lucide="menu"]::before {
  width: 18px;
  height: 12px;
  border: solid currentColor;
  border-width: 2px 0;
  border-radius: 0;
  box-shadow: 0 5px 0 currentColor;
}



i[data-lucide="arrow-right"]::before {
  content: "->";
  width: auto;
  height: auto;
  border: 0;
  font-style: normal;
}



i[data-lucide="arrow-left"]::before {
  content: "<-";
  width: auto;
  height: auto;
  border: 0;
  font-style: normal;
}



i[data-lucide="mail"]::before {
  border-radius: 2px;
}

.bg-white {
    background: #FFFFFF;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 94px;
  padding: 0 clamp(28px, 5vw, 92px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}



.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 128px;
  color: var(--blue);
  line-height: 1;
}



.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(#fff7d6 0 44%, #1d77df 45% 100%);
  border: 2px solid #e8f0ff;
}



.brand-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffc429;
  box-shadow: 0 -12px 0 -6px #ffc429, 9px -9px 0 -6px #ffc429, 12px 0 0 -6px #ffc429, -9px -9px 0 -6px #ffc429, -12px 0 0 -6px #ffc429;
}



.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 32px;
  height: 8px;
  border-radius: 50% 50% 0 0;
  background: repeating-linear-gradient(90deg, #0b5fd7 0 5px, #ffcc24 5px 7px);
}



.brand strong {
  display: block;
  font-size: 16px;
}



.brand small {
  display: block;
  color: #e27316;
  font-weight: 700;
  font-size: 10px;
  text-align: center;
}



.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 4.4vw, 66px);
  font-size: 15px;
}



.nav-menu a {
  padding: 15px 0 12px;
  border-bottom: 2px solid transparent;
}



.nav-menu a.active {
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}



.nav-menu a:hover {
  color: var(--blue);
}



.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}



.currency-picker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}



.currency-picker select {
  border: 0;
  color: var(--blue);
  background: transparent;
  outline: 0;
  padding: 10px;
}



.currency-picker.is-enhanced select {
  display: none;
}



.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 58px;
  border: 0;
  padding: 10px 0;
  color: var(--blue);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}



.currency-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 1.8px 1.8px 0;
  transform: translateY(-2px) rotate(45deg);
}



.currency-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: -11px;
  z-index: 80;
  display: none;
  width: max-content;
  min-width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}



.currency-picker.is-open .currency-menu {
  display: grid;
}



.currency-option {
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}



.currency-option:hover,
.currency-option.is-selected {
  color: var(--blue);
  background: var(--panel);
}



.flag {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}



.us-flag {
  background: repeating-linear-gradient(180deg, #d9272e 0 3px, #fff 3px 6px);
  position: relative;
  overflow: hidden;
}



.us-flag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #17468f;
}



.jm-flag {
  background: linear-gradient(35deg, transparent 42%, #fed100 43% 56%, transparent 57%), linear-gradient(145deg, transparent 42%, #fed100 43% 56%, transparent 57%), linear-gradient(90deg, #009b3a 0 50%, #000 50%);
}



.eu-flag {
  background: #003399 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'%3E%3Cg fill='%23ffcc00'%3E%3Ctext x='60' y='16' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='82' y='24' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='92' y='46' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='82' y='68' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='60' y='76' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='38' y='68' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='28' y='46' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3Ctext x='38' y='24' font-size='11' text-anchor='middle'%3E★%3C/text%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}



.gb-flag {
  background: linear-gradient(35deg, transparent 42%, #fff 43% 48%, #c8102e 49% 54%, #fff 55% 60%, transparent 61%), linear-gradient(145deg, transparent 42%, #fff 43% 48%, #c8102e 49% 54%, #fff 55% 60%, transparent 61%), linear-gradient(90deg, transparent 38%, #fff 39% 45%, #c8102e 46% 54%, #fff 55% 61%, transparent 62%), linear-gradient(0deg, transparent 38%, #fff 39% 45%, #c8102e 46% 54%, #fff 55% 61%, transparent 62%), #012169;
}



.xc-flag {
  background:
    linear-gradient(35deg,
      transparent 43%,
      #fcd116 44% 48%,
      #000 49% 51%,
      #fff 52% 56%,
      transparent 57%),
    linear-gradient(145deg,
      transparent 43%,
      #fcd116 44% 48%,
      #000 49% 51%,
      #fff 52% 56%,
      transparent 57%),
    linear-gradient(180deg,
      #65cfff 0 50%,
      #009e49 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'%3E%3Cg fill='%23ffffff'%3E%3Ctext x='60' y='43' font-size='18' text-anchor='middle'%3E★%3C/text%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}



.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
}



.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}



.btn svg {
  width: 18px;
  height: 18px;
}



.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}



.btn-primary:hover {
  background: var(--blue-dark);
}



.btn-ghost {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}



.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .9);
  background: transparent;
}



.btn-large {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 20px;
}



.home-hero h1,
.listing-hero h1 {
  margin: 0 0 22px;
  color: #fff;
}



.home-hero p,
.listing-hero p {
  margin: 0 auto 28px;
  max-width: 900px;
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.45;
}



.left-title {
  text-align: left !important;
  margin-bottom: 8px !important;
}



.lead {
  margin-top: 0;
  color: var(--blue);
  font-size: 18px;
}



.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr 1.3fr;
  gap: 54px;
  padding: 48px clamp(24px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-bottom {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  color: #667085;
}




.site-footer a,
.site-footer p {
  display: block;
  color: #667085;
}



.site-footer svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  vertical-align: middle;
}



.social {
  display: flex;
  gap: 12px;
}



.social span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
}



.newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}



.newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 13px 0;
}



.listing-hero {
  min-height: 340px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 50px 20px;
  color: var(--white);
  background: linear-gradient(rgba(7, 91, 216, .72), rgba(7, 91, 216, .72)), url("../images/solar-farm.jpg") 50% 67%/cover;
}



.listing-hero p {
  color: var(--white);
  max-width: 780px;
}



.providers-filters-column .ad-slot,
aside.ad-slot {
  width: 100%;
  height: 500px;
  display: grid;
  place-items: center;
  border: 1px dashed #aeb6c4;
  border-radius: 9px;
  background: #f5f7fb;
  color: #667085;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1199px) {

  .site-header {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 12px 22px;
  }


  .brand {
    margin-right: auto;
  }


  .hamburger {
    display: grid;
    place-items: center;
    order: 2;
  }


  .nav-menu,
  .header-actions {
    display: none;
    width: 100%;
  }


  .site-header.menu-open .nav-menu,
  .site-header.menu-open .header-actions {
    display: flex;
  }


  .nav-menu {
    order: 3;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }


  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }


  .header-actions {
    order: 4;
    flex: 0 0 100%;
    flex-wrap: wrap;
    margin-left: 0;
    padding: 12px 0 4px;
  }


  .header-actions .btn {
    flex: 1 1 150px;
    padding-inline: 14px;
  }


  .site-header {
    gap: 16px;
    padding-inline: 22px;
  }


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

@media (max-width: 767px) {

  h2 {font-size: 28px;}
  h3 {font-size: 22px;}
  h4 {font-size: 18px;}

  .site-header {
    padding: 12px 16px;
  }


  .left-title {
    font-size: 24px !important;
  }


  .lead {
    font-size: 14px !important;
    line-height: 1.3;
  }
}



.brand img {
  height: 70px;
}



.font-medium {
  font-weight: 500 !important;
}



.social svg {
  height: 30px;
  width: 30px;
}



.newsletter input {
  border: 0;
  outline: 0;
  min-width: 0;
  flex: 1;
  color: var(--pcp-ink);
  background: none !important;
}

@media (max-width: 786px) {

  .pad-lg {
    padding: 20px !important;
  }
}



.no-margin {
  margin: 0 !important;
}



.flex-row {
  display: flex;
  gap: 10px;
  align-items: center;
}



.flex-row-lg {
  display: flex;
  gap: 25px;
  align-items: center;
}



.flex-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.flex-col-lg {
  display: flex;
  flex-direction: column;
  gap: 25px;
}



.flex-col-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}



.flex-between {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

@media (max-width: 768px) {

  .flex-row-lg {
    display: flex !important;
    gap: 25px;
    align-items: center;
    flex-direction: column;
  }
}



.pad-lg {
  padding: 80px;
}



.currency-toggle,
.currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
}



.currency-flag {
  font-size: 18px;
  line-height: 1;
}



.currency-toggle,
.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
}



.currency-flag {
  width: 20px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.currency-option svg,
.currency-toggle svg {
  display: block;
}



/* ============================================
   Product / Company Profile & Blog / Events
   (merged from product-company-profile.css)
============================================ */
:root {
  --blue: #0758d6;
  --blue-dark: #0448b6;
  --ink: #222533;
  --muted: #677086;
  --line: #e0e1e6;
  --soft: #f2f2f3;
  --white: #fff;
  --radius: 6px;
  --shadow: 0 2px 10px rgba(25, 35, 58, .08);
}



* {
  box-sizing: border-box;
}



body {
  margin: 0;
  font-family: "Glacial Indifference", sans-serif;
  color: var(--ink);
  background: #f2f2f2;
}



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



button,
input {
  font: inherit;
}



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