/**
* Template Name: Clarity
* Template URL: https://bootstrapmade.com/clarity-bootstrap-agency-template/
* Updated: Sep 13 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #0a1020; /* Background color for the entire website, including individual sections */
  --default-color: #aeb9cc; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #38bdf8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #192134; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #aeb9cc;  /* The default color of the main navmenu links */
  --nav-hover-color: #38bdf8; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a1020; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #0a1020; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #aeb9cc; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #38bdf8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0f1626;
  --surface-color: #18203a;
}

.dark-background {
  --background-color: #06080f;
  --default-color: #aeb9cc;
  --heading-color: #ffffff;
  --surface-color: #10172a;
  --contrast-color: #06121f;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #1b1933;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a.active,
  .navmenu .dropdown ul a.active:focus {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
  }

  .navmenu .dropdown ul a.active:before {
    display: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -10px;
    right: 100%;
    left: auto;
    width: 360px;
    max-width: calc(100vw - 40px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown ul a {
    white-space: normal;
    line-height: 1.3;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -10px;
    right: 100%;
    left: auto;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown ul a.active,
  .navmenu .dropdown ul a.active:focus {
    border-radius: 5px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
}

.footer .footer-top {
  padding-bottom: 40px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo .sitename {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

.footer .social-links {
  gap: 10px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color) 10%, transparent);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
}

.footer .footer-links ul li a {
  color: var(--default-color);
  transition: all 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer .footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer .footer-contact p {
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer .footer-contact p strong {
  color: var(--heading-color);
}

.footer .copyright {
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
}

.footer .copyright p {
  margin: 0 0 10px;
}

.footer .copyright .sitename {
  color: var(--accent-color);
}

.footer .copyright .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.5;
}

.footer .copyright .credits--legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
}

.footer .copyright .credits--legal a + a::before {
  content: "·";
  display: inline-block;
  margin: 0 9px;
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.footer .copyright .credits--developer {
  margin-top: 10px;
}

.footer .copyright .credits a {
  color: var(--accent-color);
  font-weight: 500;
}

.footer .copyright .credits a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}


/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99998;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(720px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), #111 12%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.cookie-consent-banner[hidden],
.cookie-consent-modal[hidden] {
  display: none;
}

.cookie-consent-banner__text {
  flex: 1;
}

.cookie-consent-banner__text strong,
.cookie-consent-modal h2 {
  color: var(--heading-color);
}

.cookie-consent-banner__text p,
.cookie-consent-modal p,
.cookie-consent-option small {
  margin: 6px 0 0;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-consent-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--accent-color);
  border-radius: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.cookie-consent-button--primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.cookie-consent-button--primary:hover {
  filter: brightness(1.08);
}

.cookie-consent-button--secondary {
  background: transparent;
  color: var(--heading-color);
}

.cookie-consent-button--secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.cookie-consent-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(680px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 30px;
  border-radius: 16px;
  background: var(--background-color);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.cookie-consent-modal h2 {
  margin: 0;
  font-size: 26px;
}

.cookie-consent-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--heading-color);
  cursor: pointer;
}

.cookie-consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
  cursor: pointer;
}

.cookie-consent-option span {
  display: grid;
  gap: 2px;
}

.cookie-consent-option small {
  margin: 0;
}

.cookie-consent-option input {
  width: 42px;
  height: 22px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.cookie-consent-option input:disabled {
  cursor: not-allowed;
}

.cookie-consent-modal__actions {
  margin-top: 22px;
}

@media (max-width: 767px) {
  .cookie-consent-banner {
    right: 16px;
    bottom: 16px;
    display: block;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .cookie-consent-button {
    flex: 1 1 auto;
  }

  .cookie-consent-modal__panel {
    padding: 28px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Privacy Policy
--------------------------------------------------------------*/
.privacy-policy-page .main,
.terms-page .main,
.disclaimer-page .main {
  background: #f6f4ee;
}

.privacy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  padding: 118px 0 82px;
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 194, 69, 0.2), transparent 30%),
    radial-gradient(circle at 82% 80%, rgba(56, 189, 248, 0.14), transparent 32%),
    linear-gradient(135deg, #07101e 0%, #101d32 54%, #0a1221 100%);
}

.privacy-hero::before,
.privacy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(243, 202, 80, 0.18);
  border-radius: 24px;
  transform: rotate(26deg);
}

.privacy-hero::before {
  top: -145px;
  right: 10%;
}

.privacy-hero::after {
  bottom: -185px;
  left: 8%;
}

.privacy-hero__content {
  position: relative;
  max-width: 860px;
}

.privacy-hero__eyebrow {
  margin: 0 0 18px;
  color: #f3ca50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.privacy-hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d3ddeb;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.privacy-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 32px;
}

.privacy-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef7;
  font-size: 13px;
}

.privacy-hero__meta i {
  color: #f3ca50;
}

.privacy-hero__glow {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.36;
}

.privacy-hero__glow--one {
  top: -220px;
  right: -100px;
  background: #dcae22;
}

.privacy-hero__glow--two {
  bottom: -280px;
  right: 32%;
  background: #1b85c1;
}

.privacy-hero__infinity {
  position: absolute;
  top: 50%;
  right: clamp(-120px, 3vw, 45px);
  z-index: -1;
  width: min(47vw, 610px);
  aspect-ratio: 1.66;
  opacity: 0.48;
  transform: translateY(-46%) rotate(-14deg);
}

.privacy-hero__infinity span {
  position: absolute;
  top: 16%;
  width: 60%;
  height: 68%;
  border: 2px solid rgba(247, 207, 84, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(242, 194, 57, 0.2), inset 0 0 28px rgba(242, 194, 57, 0.1);
}

.privacy-hero__infinity span:first-child {
  left: 0;
  transform: rotate(28deg);
}

.privacy-hero__infinity span:last-child {
  right: 0;
  transform: rotate(-28deg);
}

.privacy-document-section {
  position: relative;
  padding: 74px 0 96px;
  background:
    linear-gradient(90deg, rgba(220, 174, 34, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(220, 174, 34, 0.06) 1px, transparent 1px),
    #f6f4ee;
  background-size: 38px 38px;
}

.privacy-document-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.privacy-document-nav {
  position: sticky;
  top: 110px;
  padding: 22px 18px;
  border-left: 2px solid #e6c862;
}

.privacy-document-nav > p {
  margin: 0 0 12px;
  color: #15243a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-document-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-document-nav li + li {
  margin-top: 6px;
}

.privacy-document-nav a {
  color: #647084;
  font-size: 13px;
  line-height: 1.35;
}

.privacy-document-nav a:hover {
  color: #b58709;
}

.privacy-policy-content {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(22, 39, 61, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(25, 39, 56, 0.1);
  color: #4b586b;
}

.privacy-document-intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 46px;
  padding: 18px 20px;
  border: 1px solid #f0df9e;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffbed, #fff 70%);
}

.privacy-document-intro__icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #15243a;
  color: #f6cf56;
}

.privacy-document-intro p {
  margin: 0;
}

.privacy-document-intro__label {
  margin-bottom: 4px !important;
  color: #b58709;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-policy-content section {
  padding: 28px 30px;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #fbfcfd);
  box-shadow: 0 8px 20px rgba(25, 39, 56, 0.035);
}

.privacy-policy-content section + section {
  margin-top: 18px;
}

.privacy-policy-content h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 16px;
  color: #0d2946;
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.privacy-policy-content h2 span {
  color: #c2981b;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.privacy-policy-content p,
.privacy-policy-content li,
.privacy-policy-content address {
  color: #526174;
  font-size: 16px;
  line-height: 1.78;
}

.privacy-policy-content p {
  margin: 0 0 14px;
}

.privacy-policy-content ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding-left: 22px;
}

.privacy-policy-content li::marker {
  color: #c2981b;
}

.privacy-policy-content address {
  margin: 0;
  font-style: normal;
}

.privacy-policy-content a {
  color: #a77800;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(167, 120, 0, 0.35);
  text-underline-offset: 3px;
}

.privacy-contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 16px;
  background: #15243a;
  box-shadow: 0 12px 28px rgba(21, 36, 58, 0.16);
}

.privacy-contact-card > i {
  color: #f3ca50;
  font-size: 24px;
}

.privacy-contact-card address {
  display: grid;
  gap: 3px;
  color: #d9e1ec;
}

.privacy-contact-card address strong {
  color: #fff;
}

.privacy-contact-card a {
  color: #f7d86d;
  text-decoration-color: rgba(247, 216, 109, 0.4);
}

@media (max-width: 991px) {
  .privacy-hero {
    min-height: 420px;
    padding: 96px 0 68px;
  }

  .privacy-hero__infinity {
    right: -50px;
    width: 55vw;
    opacity: 0.28;
  }

  .privacy-document-shell {
    grid-template-columns: 1fr;
  }

  .privacy-document-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 575px) {
  .privacy-hero {
    min-height: 390px;
    padding-top: 82px;
  }

  .privacy-hero__meta {
    gap: 8px;
    margin-top: 25px;
  }

  .privacy-hero__meta span {
    width: 100%;
  }

  .privacy-document-section {
    padding: 42px 0 60px;
  }

  .privacy-document-shell {
    gap: 0;
  }

  .privacy-policy-content {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .privacy-policy-content section {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .privacy-document-intro {
    padding: 16px;
  }

  .privacy-document-intro__icon {
    width: 36px;
    height: 36px;
  }

  .privacy-policy-content p,
  .privacy-policy-content li,
  .privacy-policy-content address {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Qualification Pages
--------------------------------------------------------------*/
.qualification-page .main {
  background: #f7f5ef;
}

.qualification-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 196, 58, 0.22), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(49, 150, 213, 0.2), transparent 34%),
    linear-gradient(135deg, #07101e 0%, #0d2946 54%, #091423 100%);
}

.qualification-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.qualification-hero__content {
  position: relative;
  z-index: 1;
}

.qualification-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: #b9c6d5;
  font-size: 13px;
}

.qualification-breadcrumb a {
  color: #e5bd46;
  transition: color 0.2s ease;
}

.qualification-breadcrumb a:hover {
  color: #fff;
}

.qualification-breadcrumb i {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.qualification-hero__eyebrow,
.qualification-section-label {
  margin: 0 0 15px;
  color: #c79618;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.qualification-hero__eyebrow {
  color: #f4cf58;
}

.qualification-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.qualification-hero__headline {
  max-width: 690px;
  margin: 24px 0 0;
  color: #f5d571;
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 500;
  line-height: 1.28;
}

.qualification-hero__intro {
  max-width: 650px;
  margin: 18px 0 0;
  color: #cfdae6;
  font-size: 17px;
  line-height: 1.7;
}

.qualification-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 24px;
  margin-top: 34px;
}

.qualification-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.qualification-button:hover {
  transform: translateY(-2px);
}

.qualification-button--primary {
  padding: 16px 21px;
  background: #efc449;
  color: #0b233e;
  box-shadow: 0 10px 24px rgba(235, 186, 44, 0.2);
}

.qualification-button--primary:hover {
  background: #ffda6f;
  color: #07101e;
  box-shadow: 0 14px 28px rgba(235, 186, 44, 0.32);
}

.qualification-button--text {
  padding: 10px 0;
  color: #eef4fa;
}

.qualification-button--text:hover {
  color: #f4cf58;
}

.qualification-button--light {
  flex: 0 0 auto;
  padding: 16px 21px;
  background: #fff;
  color: #0d2946;
}

.qualification-button--light:hover {
  background: #f4cf58;
  color: #0d2946;
}

.qualification-hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 460px);
}

.qualification-hero__image-frame {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 207, 88, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(7, 16, 30, 0.42));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
}

.qualification-hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 207, 88, 0.46);
  border-radius: 27px;
  pointer-events: none;
}

.qualification-hero__image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 21px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

.qualification-hero__image-badge {
  position: absolute;
  right: -25px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px 13px 13px;
  border: 1px solid rgba(244, 207, 88, 0.58);
  border-radius: 15px;
  background: #f9f4e8;
  box-shadow: 0 16px 30px rgba(1, 12, 25, 0.28);
  color: #18314e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
}

.qualification-hero__image-badge i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: #0d2946;
  color: #f4cf58;
  font-size: 18px;
}

.qualification-hero__orb,
.qualification-hero__line {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.qualification-hero__orb {
  border-radius: 50%;
  filter: blur(1px);
}

.qualification-hero__orb--gold {
  top: -230px;
  right: -150px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(244, 207, 88, 0.28);
  box-shadow: inset 0 0 80px rgba(244, 207, 88, 0.08);
}

.qualification-hero__orb--blue {
  bottom: -340px;
  left: 26%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(85, 181, 240, 0.18);
}

.qualification-hero__line {
  width: 340px;
  height: 140px;
  border: 1px solid rgba(244, 207, 88, 0.18);
  border-radius: 50%;
}

.qualification-hero__line--one {
  top: 56px;
  right: 5%;
  transform: rotate(34deg);
}

.qualification-hero__line--two {
  bottom: 30px;
  right: 18%;
  transform: rotate(-34deg);
}

.qualification-overview {
  position: relative;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.05) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.qualification-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 0.62fr);
  gap: clamp(35px, 7vw, 104px);
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.qualification-overview__copy h2,
.qualification-support__heading h2,
.qualification-cta h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.qualification-overview__copy > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: #526174;
  font-size: 17px;
  line-height: 1.78;
}

.qualification-overview__note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid #eadb9f;
  border-radius: 20px;
  background: linear-gradient(145deg, #fffdf6, #fff 75%);
  box-shadow: 0 16px 34px rgba(21, 41, 66, 0.08);
}

.qualification-overview__note > i {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #0d2946;
  color: #f2cb52;
  font-size: 21px;
}

.qualification-overview__note p {
  margin: 0;
  color: #536175;
  font-size: 14px;
  line-height: 1.65;
}

.qualification-support {
  padding: 86px 0 100px;
  background: #fff;
}

.qualification-support__heading {
  max-width: 630px;
  margin: 0 auto 42px;
  text-align: center;
}

.qualification-support__heading > p:last-child {
  margin: 18px auto 0;
  color: #617084;
  font-size: 17px;
  line-height: 1.7;
}

.qualification-support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.qualification-support-card {
  position: relative;
  overflow: hidden;
  min-height: 262px;
  padding: 27px 24px 24px;
  border: 1px solid #e6ebf0;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 12px 26px rgba(25, 39, 56, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.qualification-support-card:hover {
  border-color: #e7c554;
  box-shadow: 0 18px 35px rgba(25, 39, 56, 0.1);
  transform: translateY(-6px);
}

.qualification-support-card__number {
  position: absolute;
  top: 13px;
  right: 17px;
  color: #e3e9ef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.qualification-support-card > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #eff5fa;
  color: #ae8008;
  font-size: 22px;
}

.qualification-support-card h3 {
  margin: 24px 0 10px;
  color: #0d2946;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.qualification-support-card p {
  margin: 0;
  color: #607084;
  font-size: 14px;
  line-height: 1.67;
}

.qualification-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  max-width: 1050px;
  margin: 74px auto 0;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 9% 0%, rgba(243, 202, 80, 0.28), transparent 34%),
    linear-gradient(130deg, #0b203a, #0d3559);
  box-shadow: 0 22px 42px rgba(13, 41, 70, 0.22);
}

.qualification-cta::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -85px;
  width: 360px;
  height: 260px;
  border: 1px solid rgba(244, 207, 88, 0.3);
  border-radius: 50%;
  transform: rotate(-32deg);
}

.qualification-cta > * {
  position: relative;
  z-index: 1;
}

.qualification-cta > div > p {
  margin: 0 0 9px;
  color: #f4cf58;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-cta h2 {
  max-width: 600px;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 42px);
}

@media (max-width: 991px) {
  .qualification-hero {
    padding: 76px 0 75px;
  }

  .qualification-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.7fr);
    gap: 42px;
  }

  .qualification-hero__image-badge {
    right: -12px;
  }

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

  .qualification-support-card {
    min-height: 230px;
  }
}

@media (max-width: 767px) {
  .qualification-hero {
    padding: 64px 0 70px;
  }

  .qualification-hero__grid,
  .qualification-overview__grid {
    grid-template-columns: 1fr;
  }

  .qualification-hero__visual {
    justify-self: center;
    width: min(88%, 430px);
    margin-top: 8px;
  }

  .qualification-hero__image-frame {
    transform: rotate(2deg);
  }

  .qualification-hero__orb--blue {
    left: -160px;
  }

  .qualification-overview,
  .qualification-support {
    padding: 64px 0;
  }

  .qualification-overview__note {
    max-width: 580px;
  }

  .qualification-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
  }
}

@media (max-width: 575px) {
  .qualification-breadcrumb {
    gap: 6px;
    margin-bottom: 25px;
    font-size: 12px;
  }

  .qualification-hero h1 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .qualification-hero__intro,
  .qualification-overview__copy > p:last-child,
  .qualification-support__heading > p:last-child {
    font-size: 16px;
  }

  .qualification-hero__actions {
    display: grid;
    gap: 12px;
  }

  .qualification-button--primary {
    width: 100%;
  }

  .qualification-button--text {
    justify-content: flex-start;
  }

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

  .qualification-hero__image-frame {
    min-height: 0;
    padding: 10px;
    border-radius: 26px;
  }

  .qualification-hero__image-frame::after {
    inset: 6px;
    border-radius: 20px;
  }

  .qualification-hero__image-frame img {
    width: 100%;
    max-height: none;
    border-radius: 18px;
  }

  .qualification-hero__image-badge {
    right: -12px;
    bottom: 18px;
    padding: 10px 12px 10px 10px;
    font-size: 11px;
  }

  .qualification-hero__image-badge i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 16px;
  }

  .qualification-overview__note {
    padding: 20px;
  }

  .qualification-support__heading {
    margin-bottom: 30px;
  }

  .qualification-support__grid {
    grid-template-columns: 1fr;
  }

  .qualification-support-card {
    min-height: 0;
    padding: 25px 22px;
  }

  .qualification-cta {
    margin-top: 42px;
    padding: 30px 25px;
    border-radius: 20px;
  }

  .qualification-button--light {
    width: 100%;
  }
}

/* Qualification page content sections */
.qualification-at-a-glance {
  padding: 92px 0;
  background: #fff;
}

.qualification-at-a-glance__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.qualification-at-a-glance__heading h2,
.qualification-process__heading h2,
.qualification-evidence__content h2,
.qualification-faq__heading h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.qualification-at-a-glance__heading > p:last-child {
  margin: 22px 0 0;
  color: #57667a;
  font-size: 17px;
  line-height: 1.76;
}

.qualification-at-a-glance__cards {
  display: grid;
  gap: 13px;
}

.qualification-at-a-glance__cards article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid #e6ebf0;
  border-radius: 17px;
  background: linear-gradient(135deg, #fff, #f9fbfc);
  box-shadow: 0 9px 22px rgba(25, 39, 56, 0.04);
}

.qualification-at-a-glance__cards i {
  display: grid;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 12px;
  background: #edf4f9;
  color: #b4850c;
  font-size: 19px;
}

.qualification-at-a-glance__cards h3 {
  margin: 0 0 5px;
  color: #0d2946;
  font-size: 17px;
  font-weight: 650;
}

.qualification-at-a-glance__cards p {
  margin: 0;
  color: #617084;
  font-size: 14px;
  line-height: 1.58;
}

.qualification-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 102px;
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 207, 88, 0.2), transparent 25%),
    linear-gradient(135deg, #091727, #0d2946 62%, #0c223a);
}

.qualification-process::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -165px;
  z-index: -1;
  width: 540px;
  height: 340px;
  border: 1px solid rgba(244, 207, 88, 0.22);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.qualification-process__heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.qualification-process .qualification-section-label {
  color: #f4cf58;
}

.qualification-process__heading h2 {
  color: #fff;
}

.qualification-process__heading > p:last-child {
  max-width: 640px;
  margin: 18px auto 0;
  color: #c8d4e1;
  font-size: 17px;
  line-height: 1.7;
}

.qualification-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: rpl-step;
}

.qualification-process__steps li {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
}

.qualification-process__steps li::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -16px;
  width: 16px;
  border-top: 1px solid rgba(244, 207, 88, 0.5);
}

.qualification-process__steps li:last-child::after {
  display: none;
}

.qualification-process__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 37px;
  border-radius: 50%;
  background: #f4cf58;
  color: #0d2946;
  font-size: 13px;
  font-weight: 800;
}

.qualification-process__steps h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.qualification-process__steps p {
  margin: 0;
  color: #cbd6e2;
  font-size: 14px;
  line-height: 1.65;
}

.qualification-evidence {
  padding: 94px 0;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.045) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.qualification-evidence__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(310px, 0.76fr);
  gap: clamp(42px, 8vw, 115px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.qualification-evidence__content > p:not(.qualification-section-label) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #536276;
  font-size: 17px;
  line-height: 1.78;
}

.qualification-evidence__content .qualification-evidence__fine-print {
  margin-top: 20px;
  color: #8b7140;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
}

.qualification-evidence__list {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid #eadb9f;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(21, 41, 66, 0.08);
}

.qualification-evidence__list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border-radius: 13px;
  background: #fbfcfd;
  color: #334b64;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.qualification-evidence__list i {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: #0d2946;
  color: #f4cf58;
  font-size: 16px;
}

.qualification-faq {
  padding: 92px 0 98px;
  background: #fff;
}

.qualification-faq__heading {
  max-width: 1060px;
  margin: 0 auto 35px;
}

.qualification-faq__items {
  max-width: 1060px;
  margin: 0 auto;
}

.qualification-faq__items details {
  border-bottom: 1px solid #e3e9ef;
}

.qualification-faq__items details:first-child {
  border-top: 1px solid #e3e9ef;
}

.qualification-faq__items summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  color: #0d2946;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
  list-style: none;
}

.qualification-faq__items summary::-webkit-details-marker {
  display: none;
}

.qualification-faq__items summary i {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #edf3f7;
  color: #b4850c;
  font-size: 13px;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.qualification-faq__items details[open] summary i {
  background: #f4cf58;
  color: #0d2946;
  transform: rotate(45deg);
}

.qualification-faq__items details p {
  max-width: 880px;
  margin: -3px 0 22px;
  padding-right: 48px;
  color: #5d6c80;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .qualification-at-a-glance__grid,
  .qualification-evidence__grid {
    gap: 42px;
  }

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

  .qualification-process__steps li:nth-child(2)::after {
    display: none;
  }

  .qualification-process__steps li:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .qualification-at-a-glance,
  .qualification-process,
  .qualification-evidence,
  .qualification-faq {
    padding: 65px 0;
  }

  .qualification-at-a-glance__grid,
  .qualification-evidence__grid {
    grid-template-columns: 1fr;
  }

  .qualification-at-a-glance__cards {
    max-width: 620px;
  }

  .qualification-process__steps li {
    min-height: 0;
  }

  .qualification-process__steps li::after {
    display: none !important;
  }

  .qualification-evidence__list {
    max-width: 620px;
  }
}

@media (max-width: 575px) {
  .qualification-at-a-glance__heading > p:last-child,
  .qualification-process__heading > p:last-child,
  .qualification-evidence__content > p:not(.qualification-section-label) {
    font-size: 16px;
  }

  .qualification-process__steps {
    grid-template-columns: 1fr;
  }

  .qualification-process__steps li {
    padding: 22px 20px;
  }

  .qualification-process__steps span {
    margin-bottom: 25px;
  }

  .qualification-evidence__list {
    padding: 12px;
  }

  .qualification-evidence__list div {
    padding: 12px;
    font-size: 14px;
  }

  .qualification-faq__items summary {
    padding: 18px 0;
    font-size: 16px;
  }

  .qualification-faq__items details p {
    padding-right: 0;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Qualifications Directory
--------------------------------------------------------------*/
.qualifications-page .main {
  background: #f7f5ef;
}

.qualifications-directory-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 90px;
  background:
    radial-gradient(circle at 11% 6%, rgba(242, 196, 58, 0.23), transparent 28%),
    radial-gradient(circle at 89% 84%, rgba(55, 165, 226, 0.19), transparent 32%),
    linear-gradient(135deg, #07101e, #0d2946 57%, #081423);
}

.qualifications-directory-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.56fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.qualifications-directory-hero__content {
  position: relative;
  z-index: 1;
}

.qualifications-directory-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: #c7d2df;
  font-size: 13px;
}

.qualifications-directory-breadcrumb a {
  color: #f2ce59;
}

.qualifications-directory-breadcrumb a:hover {
  color: #fff;
}

.qualifications-directory-breadcrumb i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.qualifications-directory-eyebrow {
  margin: 0 0 15px;
  color: #bd8d10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.qualifications-directory-hero .qualifications-directory-eyebrow {
  color: #f4cf58;
}

.qualifications-directory-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.qualifications-directory-hero__content > p:last-of-type {
  max-width: 650px;
  margin: 25px 0 0;
  color: #d1dce8;
  font-size: 18px;
  line-height: 1.7;
}

.qualifications-directory-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 34px;
}

.qualifications-directory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.qualifications-directory-button:hover {
  transform: translateY(-2px);
}

.qualifications-directory-button--primary {
  padding: 16px 21px;
  background: #f1c64b;
  color: #0d2946;
  box-shadow: 0 10px 24px rgba(237, 191, 48, 0.22);
}

.qualifications-directory-button--primary:hover {
  background: #ffda70;
  color: #07101e;
}

.qualifications-directory-button--text {
  padding: 10px 0;
  color: #edf4fa;
}

.qualifications-directory-button--text:hover {
  color: #f4cf58;
}

.qualifications-directory-button--light {
  flex: 0 0 auto;
  padding: 16px 21px;
  background: #fff;
  color: #0d2946;
}

.qualifications-directory-button--light:hover {
  background: #f4cf58;
  color: #0d2946;
}

.qualifications-directory-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.qualifications-directory-hero__stats div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.qualifications-directory-hero__stats strong {
  min-width: 55px;
  color: #f4cf58;
  font-size: 41px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.qualifications-directory-hero__stats span {
  color: #e1e8ef;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
  text-transform: uppercase;
}

.qualifications-directory-hero__orb,
.qualifications-directory-hero__infinity {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.qualifications-directory-hero__orb {
  border-radius: 50%;
}

.qualifications-directory-hero__orb--one {
  top: -230px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 207, 88, 0.27);
  box-shadow: inset 0 0 90px rgba(244, 207, 88, 0.08);
}

.qualifications-directory-hero__orb--two {
  bottom: -300px;
  left: 19%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(91, 182, 238, 0.16);
}

.qualifications-directory-hero__infinity {
  right: 30%;
  bottom: -48px;
  width: 270px;
  height: 130px;
  opacity: 0.42;
  transform: rotate(-22deg);
}

.qualifications-directory-hero__infinity span {
  position: absolute;
  width: 65%;
  height: 78%;
  border: 1px solid rgba(244, 207, 88, 0.62);
  border-radius: 50%;
}

.qualifications-directory-hero__infinity span:first-child {
  left: 0;
  transform: rotate(29deg);
}

.qualifications-directory-hero__infinity span:last-child {
  right: 0;
  transform: rotate(-29deg);
}

.qualifications-directory {
  padding: 88px 0 102px;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.045) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.qualifications-directory__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.qualifications-directory__intro h2,
.qualifications-directory-group__heading h2,
.qualifications-directory-cta h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(33px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.qualifications-directory__intro > p:last-child {
  max-width: 630px;
  margin: 19px auto 0;
  color: #5b6a7e;
  font-size: 17px;
  line-height: 1.72;
}

.qualifications-directory__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 35px 0 74px;
}

.qualifications-directory__filters a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid #dde5ed;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #435870;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.qualifications-directory__filters a:hover {
  border-color: #d8b644;
  background: #fff8e3;
  color: #0d2946;
  transform: translateY(-2px);
}

.qualifications-directory__filters i {
  color: #b5860c;
}

.qualifications-directory-group {
  --directory-accent: #c1941b;
  --directory-accent-soft: #fff5d5;
  --directory-panel: #fffdf8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(24, 49, 78, 0.09);
  border-radius: 30px;
  background: var(--directory-panel);
  box-shadow: 0 18px 45px rgba(25, 39, 56, 0.08);
}

.qualifications-directory-group::before {
  content: "";
  position: absolute;
  top: -135px;
  right: -90px;
  z-index: -1;
  width: 310px;
  height: 310px;
  border: 1px solid color-mix(in srgb, var(--directory-accent), transparent 68%);
  border-radius: 50%;
  box-shadow: inset 0 0 52px color-mix(in srgb, var(--directory-accent), transparent 92%);
}

.qualifications-directory-group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 46px;
  width: 80px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: var(--directory-accent);
}

.qualifications-directory-group--automotive {
  --directory-accent: #b5830d;
  --directory-accent-soft: #fff3cd;
  --directory-panel: #fffdfa;
}

.qualifications-directory-group--construction {
  --directory-accent: #2374a9;
  --directory-accent-soft: #e2f3ff;
  --directory-panel: #fbfdff;
}

.qualifications-directory-group--hospitality {
  --directory-accent: #9d4f60;
  --directory-accent-soft: #fce8ec;
  --directory-panel: #fffafb;
}

.qualifications-directory-group + .qualifications-directory-group {
  margin-top: 34px;
}

.qualifications-directory-group__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 31px;
}

.qualifications-directory-group__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--directory-accent), transparent 76%);
  border-radius: 17px;
  background: var(--directory-accent-soft);
  box-shadow: 0 9px 20px rgba(13, 41, 70, 0.08);
  color: var(--directory-accent);
  font-size: 25px;
}

.qualifications-directory-group__heading .qualifications-directory-eyebrow {
  margin-bottom: 7px;
}

.qualifications-directory-group__heading h2 {
  font-size: clamp(28px, 3.6vw, 41px);
}

.qualifications-directory-group__heading > div:nth-child(2) > p:last-child {
  margin: 9px 0 0;
  color: #627186;
  font-size: 15px;
  line-height: 1.6;
}

.qualifications-directory-group__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.qualifications-directory-group__meta > span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--directory-accent-soft);
  color: var(--directory-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.qualifications-directory-group__industry-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--directory-accent);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.qualifications-directory-group__industry-link:hover {
  color: #0d2946;
}

.qualifications-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.qualifications-directory-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8ee;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 39, 56, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.qualifications-directory-card:hover {
  border-color: #e0bd49;
  box-shadow: 0 18px 32px rgba(25, 39, 56, 0.11);
  transform: translateY(-6px);
}

.qualifications-directory-card__image {
  display: grid;
  min-height: 188px;
  place-items: center;
  overflow: hidden;
  padding: 11px;
  border-bottom: 1px solid #e7ecf1;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--directory-accent), transparent 78%), transparent 63%),
    #f3f6f8;
}

.qualifications-directory-card__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 208px;
  border-radius: 11px;
  box-shadow: 0 8px 17px rgba(21, 41, 66, 0.13);
  object-fit: contain;
  transition: transform 0.35s ease;
}

.qualifications-directory-card:hover .qualifications-directory-card__image img {
  transform: scale(1.025);
}

.qualifications-directory-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px 18px 18px;
}

.qualifications-directory-card__content > p {
  margin: 0 0 9px;
  color: #a87902;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qualifications-directory-card h3 {
  margin: 0;
  color: #0d2946;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.qualifications-directory-card h3 a {
  color: inherit;
}

.qualifications-directory-card h3 a:hover {
  color: #a87902;
}

.qualifications-directory-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: #58708a;
  font-size: 13px;
  font-weight: 700;
}

.qualifications-directory-card__link:hover {
  color: #a87902;
}

.qualifications-directory-card__link i {
  color: #bb8e16;
}

.qualifications-directory-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  margin-top: 92px;
  padding: clamp(31px, 5vw, 52px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 207, 88, 0.27), transparent 35%),
    linear-gradient(135deg, #0b203a, #0d3559);
  box-shadow: 0 22px 43px rgba(13, 41, 70, 0.22);
}

.qualifications-directory-cta::after {
  content: "";
  position: absolute;
  right: -94px;
  bottom: -148px;
  width: 345px;
  height: 255px;
  border: 1px solid rgba(244, 207, 88, 0.3);
  border-radius: 50%;
  transform: rotate(-34deg);
}

.qualifications-directory-cta > * {
  position: relative;
  z-index: 1;
}

.qualifications-directory-cta p {
  margin: 0 0 9px;
  color: #f4cf58;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualifications-directory-cta h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 43px);
}

.qualifications-directory-cta span {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: #cbd7e2;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .qualifications-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .qualifications-directory-hero {
    padding: 77px 0;
  }

  .qualifications-directory-hero__grid {
    gap: 44px;
  }

  .qualifications-directory-group__heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .qualifications-directory-group__meta {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .qualifications-directory-hero {
    padding: 65px 0 70px;
  }

  .qualifications-directory-hero__grid {
    grid-template-columns: 1fr;
  }

  .qualifications-directory-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qualifications-directory-hero__stats div {
    display: block;
    padding: 16px;
  }

  .qualifications-directory-hero__stats strong {
    display: block;
    margin-bottom: 7px;
  }

  .qualifications-directory {
    padding: 65px 0 75px;
  }

  .qualifications-directory__filters {
    margin-bottom: 60px;
  }

  .qualifications-directory-group + .qualifications-directory-group {
    margin-top: 30px;
  }

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

  .qualifications-directory-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 68px;
  }
}

@media (max-width: 575px) {
  .qualifications-directory-hero h1 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .qualifications-directory-hero__content > p:last-of-type,
  .qualifications-directory__intro > p:last-child {
    font-size: 16px;
  }

  .qualifications-directory-hero__actions {
    display: grid;
    gap: 12px;
  }

  .qualifications-directory-button--primary {
    width: 100%;
  }

  .qualifications-directory-button--text {
    justify-content: flex-start;
  }

  .qualifications-directory-hero__stats {
    grid-template-columns: 1fr;
  }

  .qualifications-directory-hero__stats div {
    display: flex;
  }

  .qualifications-directory-group__heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
  }

  .qualifications-directory-group__icon {
    width: 47px;
    height: 47px;
    border-radius: 14px;
    font-size: 21px;
  }

  .qualifications-directory-group {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .qualifications-directory-group::after {
    left: 20px;
  }

  .qualifications-directory-group__meta {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
    align-items: center;
  }

  .qualifications-directory-grid {
    grid-template-columns: 1fr;
  }

  .qualifications-directory-card__image {
    min-height: 210px;
  }

  .qualifications-directory-card__image img {
    max-height: 230px;
  }

  .qualifications-directory-cta {
    margin-top: 56px;
    padding: 30px 25px;
    border-radius: 20px;
  }

  .qualifications-directory-button--light {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Industries Directory
--------------------------------------------------------------*/
.industries-directory-page .main {
  background: #f7f5ef;
}

.industries-directory-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 12% 7%, rgba(244, 207, 88, 0.22), transparent 29%),
    radial-gradient(circle at 90% 80%, rgba(57, 159, 219, 0.18), transparent 34%),
    linear-gradient(135deg, #07101e, #0d2946 58%, #081423);
}

.industries-directory-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.industries-directory-hero__content {
  position: relative;
  z-index: 1;
}

.industries-directory-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: #c6d2df;
  font-size: 13px;
}

.industries-directory-breadcrumb a {
  color: #f3cf5b;
}

.industries-directory-breadcrumb a:hover {
  color: #fff;
}

.industries-directory-breadcrumb i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.industries-directory-eyebrow {
  margin: 0 0 15px;
  color: #b8870e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.industries-directory-hero .industries-directory-eyebrow {
  color: #f4cf58;
}

.industries-directory-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.industries-directory-hero__content > p:last-of-type {
  max-width: 655px;
  margin: 25px 0 0;
  color: #d0dbe7;
  font-size: 18px;
  line-height: 1.7;
}

.industries-directory-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 34px;
}

.industries-directory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.industries-directory-button:hover {
  transform: translateY(-2px);
}

.industries-directory-button--primary {
  padding: 16px 21px;
  background: #f1c64b;
  color: #0d2946;
  box-shadow: 0 10px 24px rgba(237, 191, 48, 0.22);
}

.industries-directory-button--primary:hover {
  background: #ffda70;
  color: #07101e;
}

.industries-directory-button--text {
  padding: 10px 0;
  color: #edf4fa;
}

.industries-directory-button--text:hover {
  color: #f4cf58;
}

.industries-directory-button--light {
  flex: 0 0 auto;
  padding: 16px 21px;
  background: #fff;
  color: #0d2946;
}

.industries-directory-button--light:hover {
  background: #f4cf58;
  color: #0d2946;
}

.industries-directory-hero__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.industries-directory-hero__list a {
  display: grid;
  grid-template-columns: 26px 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.industries-directory-hero__list a:hover {
  border-color: rgba(244, 207, 88, 0.62);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transform: translateX(5px);
}

.industries-directory-hero__list a > span {
  color: #e1b83e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.industries-directory-hero__list a > i:not(.industries-directory-hero__arrow) {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(244, 207, 88, 0.16);
  color: #f4cf58;
  font-size: 19px;
}

.industries-directory-hero__list strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.industries-directory-hero__arrow {
  color: #f4cf58;
}

.industries-directory-hero__orb,
.industries-directory-hero__infinity {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.industries-directory-hero__orb {
  border-radius: 50%;
}

.industries-directory-hero__orb--one {
  top: -245px;
  right: -145px;
  width: 535px;
  height: 535px;
  border: 1px solid rgba(244, 207, 88, 0.28);
  box-shadow: inset 0 0 85px rgba(244, 207, 88, 0.07);
}

.industries-directory-hero__orb--two {
  bottom: -310px;
  left: 23%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(90, 183, 240, 0.16);
}

.industries-directory-hero__infinity {
  right: 28%;
  bottom: -55px;
  width: 270px;
  height: 130px;
  opacity: 0.4;
  transform: rotate(-22deg);
}

.industries-directory-hero__infinity span {
  position: absolute;
  width: 65%;
  height: 78%;
  border: 1px solid rgba(244, 207, 88, 0.62);
  border-radius: 50%;
}

.industries-directory-hero__infinity span:first-child {
  left: 0;
  transform: rotate(29deg);
}

.industries-directory-hero__infinity span:last-child {
  right: 0;
  transform: rotate(-29deg);
}

.industries-directory {
  padding: 88px 0 102px;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.045) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.industries-directory__intro {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.industries-directory__intro h2,
.industries-directory-next h2,
.industries-directory-cta h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(33px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.industries-directory__intro > p:last-child {
  max-width: 650px;
  margin: 19px auto 0;
  color: #5c6b7f;
  font-size: 17px;
  line-height: 1.72;
}

.industries-directory__cards {
  display: grid;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.industries-directory-card {
  --industry-accent: #b5830d;
  --industry-accent-soft: #fff3cd;
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(24, 49, 78, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(25, 39, 56, 0.07);
}

.industries-directory-card--construction {
  --industry-accent: #2374a9;
  --industry-accent-soft: #e2f3ff;
}

.industries-directory-card--hospitality {
  --industry-accent: #9d4f60;
  --industry-accent-soft: #fce8ec;
}

.industries-directory-card:nth-child(even) .industries-directory-card__visual {
  order: 2;
}

.industries-directory-card__visual {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--industry-accent), transparent 72%), transparent 66%),
    #edf2f5;
}

.industries-directory-card__visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 330px;
  border-radius: 16px;
  box-shadow: 0 16px 27px rgba(21, 41, 66, 0.16);
  object-fit: contain;
}

.industries-directory-card__content {
  padding: clamp(28px, 4vw, 48px);
}

.industries-directory-card__title {
  display: flex;
  gap: 15px;
  align-items: center;
}

.industries-directory-card__title > span {
  display: grid;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  background: var(--industry-accent-soft);
  color: var(--industry-accent);
  font-size: 22px;
}

.industries-directory-card__title p {
  margin: 0 0 4px;
  color: var(--industry-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industries-directory-card__title h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.industries-directory-card__description {
  margin: 21px 0 0;
  color: #59697d;
  font-size: 16px;
  line-height: 1.72;
}

.industries-directory-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 15px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.industries-directory-card li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  color: #40566e;
  font-size: 14px;
  line-height: 1.45;
}

.industries-directory-card li i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--industry-accent);
  font-size: 15px;
}

.industries-directory-card__link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  color: var(--industry-accent);
  font-size: 14px;
  font-weight: 800;
}

.industries-directory-card__link:hover {
  color: #0d2946;
}

.industries-directory-next {
  margin-top: 72px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 27px;
  background: linear-gradient(135deg, #0b203a, #0d3559);
  box-shadow: 0 21px 42px rgba(13, 41, 70, 0.2);
}

.industries-directory-next__heading {
  max-width: 640px;
}

.industries-directory-next .industries-directory-eyebrow,
.industries-directory-cta p {
  color: #f4cf58;
}

.industries-directory-next h2 {
  color: #fff;
}

.industries-directory-next__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 37px;
}

.industries-directory-next__steps div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.industries-directory-next__steps span {
  display: block;
  margin-bottom: 20px;
  color: #f4cf58;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.industries-directory-next__steps h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.industries-directory-next__steps p {
  margin: 0;
  color: #cbd7e2;
  font-size: 14px;
  line-height: 1.65;
}

.industries-directory-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  margin-top: 30px;
  padding: clamp(31px, 5vw, 52px);
  border: 1px solid #e4c458;
  border-radius: 27px;
  background: #fffdf6;
  box-shadow: 0 17px 35px rgba(25, 39, 56, 0.08);
}

.industries-directory-cta::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -90px;
  width: 340px;
  height: 255px;
  border: 1px solid rgba(194, 152, 27, 0.23);
  border-radius: 50%;
  transform: rotate(-34deg);
}

.industries-directory-cta > * {
  position: relative;
  z-index: 1;
}

.industries-directory-cta p {
  margin: 0 0 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industries-directory-cta h2 {
  max-width: 660px;
  font-size: clamp(28px, 3.6vw, 43px);
}

@media (max-width: 991px) {
  .industries-directory-hero {
    padding: 77px 0;
  }

  .industries-directory-hero__grid {
    gap: 45px;
  }

  .industries-directory-card {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  }

  .industries-directory-card__content {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .industries-directory-hero {
    padding: 65px 0 70px;
  }

  .industries-directory-hero__grid,
  .industries-directory-card {
    grid-template-columns: 1fr;
  }

  .industries-directory-hero__list {
    max-width: 560px;
  }

  .industries-directory {
    padding: 65px 0 75px;
  }

  .industries-directory-card:nth-child(even) .industries-directory-card__visual {
    order: initial;
  }

  .industries-directory-card__visual {
    min-height: 300px;
  }

  .industries-directory-next__steps {
    grid-template-columns: 1fr;
  }

  .industries-directory-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .industries-directory-hero h1 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .industries-directory-hero__content > p:last-of-type,
  .industries-directory__intro > p:last-child {
    font-size: 16px;
  }

  .industries-directory-hero__actions {
    display: grid;
    gap: 12px;
  }

  .industries-directory-button--primary,
  .industries-directory-button--light {
    width: 100%;
  }

  .industries-directory-button--text {
    justify-content: flex-start;
  }

  .industries-directory-hero__list a {
    grid-template-columns: 25px 37px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 14px;
  }

  .industries-directory-hero__list a > i:not(.industries-directory-hero__arrow) {
    width: 37px;
    height: 37px;
  }

  .industries-directory-card {
    border-radius: 22px;
  }

  .industries-directory-card__visual {
    min-height: 250px;
    padding: 18px;
  }

  .industries-directory-card__visual img {
    max-height: 260px;
  }

  .industries-directory-card__content {
    padding: 27px 21px;
  }

  .industries-directory-card ul {
    grid-template-columns: 1fr;
  }

  .industries-directory-next,
  .industries-directory-cta {
    margin-top: 30px;
    padding: 30px 24px;
    border-radius: 20px;
  }
}

/*--------------------------------------------------------------
# Industry Detail Pages
--------------------------------------------------------------*/
.industry-detail-page .main {
  background: #f7f5ef;
}

.industry-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 11% 7%, color-mix(in srgb, var(--industry-detail-accent), transparent 78%), transparent 29%),
    radial-gradient(circle at 87% 81%, rgba(52, 161, 223, 0.16), transparent 34%),
    linear-gradient(135deg, #07101e, #0d2946 58%, #081423);
}

.industry-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.75fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.industry-detail-hero__content {
  position: relative;
  z-index: 1;
}

.industry-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 29px;
  color: #c7d2df;
  font-size: 13px;
}

.industry-detail-breadcrumb a {
  color: #f4cf58;
}

.industry-detail-breadcrumb a:hover {
  color: #fff;
}

.industry-detail-breadcrumb i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.industry-detail-eyebrow {
  margin: 0 0 15px;
  color: var(--industry-detail-accent, #be8d12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.industry-detail-hero .industry-detail-eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #f4cf58;
}

.industry-detail-hero h1 {
  max-width: 810px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 1;
}

.industry-detail-hero__headline {
  margin: 23px 0 0;
  color: #f4d576;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.28;
}

.industry-detail-hero__intro {
  max-width: 655px;
  margin: 18px 0 0;
  color: #ced9e5;
  font-size: 17px;
  line-height: 1.7;
}

.industry-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 34px;
}

.industry-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.industry-detail-button:hover {
  transform: translateY(-2px);
}

.industry-detail-button--primary {
  padding: 16px 21px;
  background: #f2c74c;
  color: #0d2946;
  box-shadow: 0 10px 24px rgba(237, 191, 48, 0.22);
}

.industry-detail-button--primary:hover {
  background: #ffda70;
  color: #07101e;
}

.industry-detail-button--text {
  padding: 10px 0;
  color: #edf4fa;
}

.industry-detail-button--text:hover {
  color: #f4cf58;
}

.industry-detail-button--light {
  flex: 0 0 auto;
  padding: 16px 21px;
  background: #fff;
  color: #0d2946;
}

.industry-detail-button--light:hover {
  background: #f4cf58;
  color: #0d2946;
}

.industry-detail-hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 460px);
}

.industry-detail-hero__image-frame {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--industry-detail-accent), transparent 72%), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(7, 16, 30, 0.42));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
}

.industry-detail-hero__image-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 21px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

.industry-detail-hero__badge {
  position: absolute;
  right: -21px;
  bottom: 27px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px 12px 13px;
  border: 1px solid color-mix(in srgb, var(--industry-detail-accent), transparent 42%);
  border-radius: 15px;
  background: #fffdf7;
  box-shadow: 0 16px 30px rgba(1, 12, 25, 0.28);
}

.industry-detail-hero__badge strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #0d2946;
  color: #f4cf58;
  font-size: 18px;
}

.industry-detail-hero__badge span {
  color: #203a55;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.industry-detail-hero__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 207, 88, 0.23);
  border-radius: 50%;
}

.industry-detail-hero__orb--one {
  top: -240px;
  right: -145px;
  width: 520px;
  height: 520px;
}

.industry-detail-hero__orb--two {
  bottom: -330px;
  left: 26%;
  width: 560px;
  height: 560px;
  border-color: rgba(85, 181, 240, 0.16);
}

.industry-detail-overview {
  padding: 86px 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--industry-detail-accent), transparent 92%) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--industry-detail-accent), transparent 94%) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.industry-detail-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 0.62fr);
  gap: clamp(35px, 7vw, 104px);
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.industry-detail-overview h2,
.industry-detail-focus__heading h2,
.industry-detail-pathways__heading h2,
.industry-detail-cta h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.industry-detail-overview__grid > div > p:last-child {
  max-width: 655px;
  margin: 22px 0 0;
  color: #536276;
  font-size: 17px;
  line-height: 1.78;
}

.industry-detail-overview__note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--industry-detail-accent), transparent 63%);
  border-radius: 20px;
  background: linear-gradient(145deg, #fffdf6, #fff 75%);
  box-shadow: 0 16px 34px rgba(21, 41, 66, 0.08);
}

.industry-detail-overview__note i {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #0d2946;
  color: #f4cf58;
  font-size: 21px;
}

.industry-detail-overview__note p {
  margin: 0;
  color: #536175;
  font-size: 14px;
  line-height: 1.65;
}

.industry-detail-focus {
  padding: 86px 0;
  background: #fff;
}

.industry-detail-focus__heading {
  max-width: 690px;
  margin: 0 auto 41px;
  text-align: center;
}

.industry-detail-focus__heading > p:last-child {
  margin: 18px auto 0;
  color: #617084;
  font-size: 17px;
  line-height: 1.7;
}

.industry-detail-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  max-width: 1080px;
  margin: 0 auto;
}

.industry-detail-focus__grid article {
  position: relative;
  min-height: 245px;
  padding: 28px 24px;
  border: 1px solid #e4eaf0;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 12px 26px rgba(25, 39, 56, 0.045);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.industry-detail-focus__grid article:hover {
  border-color: color-mix(in srgb, var(--industry-detail-accent), transparent 45%);
  box-shadow: 0 18px 35px rgba(25, 39, 56, 0.1);
  transform: translateY(-5px);
}

.industry-detail-focus__grid article > span {
  position: absolute;
  top: 15px;
  right: 17px;
  color: #e0e7ed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.industry-detail-focus__grid article > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--industry-detail-accent-soft);
  color: var(--industry-detail-accent);
  font-size: 22px;
}

.industry-detail-focus__grid h3 {
  margin: 24px 0 10px;
  color: #0d2946;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.industry-detail-focus__grid p {
  margin: 0;
  color: #607084;
  font-size: 14px;
  line-height: 1.67;
}

.industry-detail-pathways {
  padding: 88px 0 100px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--industry-detail-accent), transparent 92%) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--industry-detail-accent), transparent 94%) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.industry-detail-pathways__heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.industry-detail-pathways__heading > p:last-child {
  margin: 18px auto 0;
  color: #617084;
  font-size: 17px;
  line-height: 1.7;
}

.industry-detail-pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-detail-pathway-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e7ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 11px 25px rgba(25, 39, 56, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-detail-pathway-card:hover {
  border-color: color-mix(in srgb, var(--industry-detail-accent), transparent 45%);
  box-shadow: 0 18px 34px rgba(25, 39, 56, 0.1);
  transform: translateY(-6px);
}

.industry-detail-pathway-card__image {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 11px;
  border-bottom: 1px solid #e7ecf1;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--industry-detail-accent), transparent 79%), transparent 65%),
    #f2f5f7;
}

.industry-detail-pathway-card__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 208px;
  border-radius: 11px;
  box-shadow: 0 8px 17px rgba(21, 41, 66, 0.13);
  object-fit: contain;
}

.industry-detail-pathway-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 21px 19px 19px;
}

.industry-detail-pathway-card__content > p {
  margin: 0 0 8px;
  color: var(--industry-detail-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.industry-detail-pathway-card h3 {
  margin: 0;
  color: #0d2946;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.industry-detail-pathway-card h3 a {
  color: inherit;
}

.industry-detail-pathway-card h3 a:hover {
  color: var(--industry-detail-accent);
}

.industry-detail-pathway-card__content > span {
  margin-top: 12px;
  color: #607084;
  font-size: 14px;
  line-height: 1.62;
}

.industry-detail-pathway-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--industry-detail-accent);
  font-size: 13px;
  font-weight: 800;
}

.industry-detail-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  margin: 74px auto 0;
  padding: clamp(31px, 5vw, 52px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--industry-detail-accent), transparent 73%), transparent 35%),
    linear-gradient(135deg, #0b203a, #0d3559);
  box-shadow: 0 22px 43px rgba(13, 41, 70, 0.22);
}

.industry-detail-cta::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -150px;
  width: 350px;
  height: 255px;
  border: 1px solid rgba(244, 207, 88, 0.3);
  border-radius: 50%;
  transform: rotate(-34deg);
}

.industry-detail-cta > * {
  position: relative;
  z-index: 1;
}

.industry-detail-cta p {
  margin: 0 0 9px;
  color: #f4cf58;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-detail-cta h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 43px);
}

@media (max-width: 1199px) {
  .industry-detail-pathways__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .industry-detail-hero {
    padding: 76px 0;
  }

  .industry-detail-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.7fr);
    gap: 42px;
  }

  .industry-detail-focus__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .industry-detail-hero {
    padding: 65px 0 70px;
  }

  .industry-detail-hero__grid,
  .industry-detail-overview__grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-hero__visual {
    justify-self: center;
    width: min(88%, 430px);
    margin-top: 8px;
  }

  .industry-detail-overview,
  .industry-detail-focus,
  .industry-detail-pathways {
    padding: 65px 0;
  }

  .industry-detail-focus__grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-focus__grid article {
    min-height: 0;
  }

  .industry-detail-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (max-width: 575px) {
  .industry-detail-hero h1 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .industry-detail-hero__intro,
  .industry-detail-overview__grid > div > p:last-child,
  .industry-detail-focus__heading > p:last-child,
  .industry-detail-pathways__heading > p:last-child {
    font-size: 16px;
  }

  .industry-detail-hero__actions {
    display: grid;
    gap: 12px;
  }

  .industry-detail-button--primary,
  .industry-detail-button--light {
    width: 100%;
  }

  .industry-detail-button--text {
    justify-content: flex-start;
  }

  .industry-detail-hero__visual {
    width: calc(100% - 24px);
  }

  .industry-detail-hero__image-frame {
    min-height: 0;
    padding: 10px;
    border-radius: 26px;
    transform: rotate(1deg);
  }

  .industry-detail-hero__image-frame img {
    width: 100%;
    max-height: none;
    border-radius: 18px;
  }

  .industry-detail-hero__badge {
    right: -11px;
    bottom: 18px;
  }

  .industry-detail-pathways__grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-pathway-card__image {
    min-height: 210px;
  }

  .industry-detail-pathway-card__image img {
    max-height: 230px;
  }

  .industry-detail-cta {
    margin-top: 42px;
    padding: 30px 25px;
    border-radius: 20px;
  }
}

/*--------------------------------------------------------------
# Payment & Refund
--------------------------------------------------------------*/
.scenius-payment-refund {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background-color: #f7f5ef !important;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.045) 1px, transparent 1px),
    #f7f5ef;
  background-size: 38px 38px;
}

.scenius-payment-refund::before,
.scenius-payment-refund::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(194, 152, 27, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.scenius-payment-refund::before {
  top: -170px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.scenius-payment-refund::after {
  bottom: -240px;
  left: 8%;
  width: 410px;
  height: 280px;
  transform: rotate(-27deg);
}

.scenius-payment-refund .container {
  position: relative;
  z-index: 1;
}

.scenius-payment-refund__heading {
  max-width: 710px;
  margin: 0 auto;
  text-align: center;
}

.scenius-payment-refund__eyebrow {
  margin: 0 0 15px;
  color: #b78609;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scenius-payment-refund__heading h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.scenius-payment-refund__heading > p:last-child {
  max-width: 620px;
  margin: 19px auto 0;
  color: #59697d;
  font-size: 17px;
  line-height: 1.72;
}

.scenius-payment-refund__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1080px;
  margin: 36px auto 42px;
}

.scenius-payment-refund__pills span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid #e5d692;
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.86);
  color: #495d73;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.scenius-payment-refund__pills i {
  color: #b78609;
  font-size: 15px;
}

.scenius-payment-refund__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
  max-width: 1080px;
  margin: 0 auto;
}

.scenius-payment-refund__card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 43px);
  border-radius: 25px;
}

.scenius-payment-refund__card--payment {
  border: 1px solid #ead68f;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 198, 75, 0.28), transparent 36%),
    linear-gradient(145deg, #fffdf3, #fff 72%);
  box-shadow: 0 17px 36px rgba(25, 39, 56, 0.08);
}

.scenius-payment-refund__card--refund {
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 207, 88, 0.18), transparent 35%),
    linear-gradient(135deg, #0b203a, #0e3457);
  box-shadow: 0 20px 40px rgba(13, 41, 70, 0.2);
}

.scenius-payment-refund__card--refund::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -160px;
  width: 310px;
  height: 270px;
  border: 1px solid rgba(244, 207, 88, 0.28);
  border-radius: 50%;
  transform: rotate(-31deg);
}

.scenius-payment-refund__card > * {
  position: relative;
  z-index: 1;
}

.scenius-payment-refund__card-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 15px;
  font-size: 23px;
}

.scenius-payment-refund__card--payment .scenius-payment-refund__card-icon {
  background: #0d2946;
  color: #f4cf58;
}

.scenius-payment-refund__card--refund .scenius-payment-refund__card-icon {
  background: rgba(244, 207, 88, 0.16);
  color: #f4cf58;
}

.scenius-payment-refund__card h3 {
  margin: 25px 0 8px;
  color: #0d2946;
  font-size: clamp(25px, 3vw, 33px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.scenius-payment-refund__card--refund h3 {
  color: #fff;
}

.scenius-payment-refund__card-lead {
  margin: 0;
  color: #a57805;
  font-size: 15px;
  font-weight: 700;
}

.scenius-payment-refund__card--refund .scenius-payment-refund__card-lead {
  color: #f4cf58;
}

.scenius-payment-refund__card > p:not(.scenius-payment-refund__card-lead) {
  max-width: 500px;
  margin: 19px 0 0;
  color: #55657a;
  font-size: 15px;
  line-height: 1.74;
}

.scenius-payment-refund__card--refund > p:not(.scenius-payment-refund__card-lead) {
  color: #ced9e5;
}

.scenius-payment-refund__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.scenius-payment-refund__methods span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid #e7d98f;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.67);
  color: #37506a;
  font-size: 13px;
  font-weight: 700;
}

.scenius-payment-refund__methods i {
  color: #b78609;
}

.scenius-payment-refund__link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 27px;
  color: #f4cf58;
  font-size: 14px;
  font-weight: 800;
}

.scenius-payment-refund__link:hover {
  color: #fff;
}

.scenius-payment-refund__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 20px auto 0;
  padding: 17px 20px;
  border: 1px solid #e1e7ed;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 9px 20px rgba(25, 39, 56, 0.035);
}

.scenius-payment-refund__note i {
  margin-top: 1px;
  color: #b78609;
  font-size: 20px;
}

.scenius-payment-refund__note p {
  margin: 0;
  color: #607084;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .scenius-payment-refund {
    padding: 67px 0;
  }

  .scenius-payment-refund__grid {
    grid-template-columns: 1fr;
  }

  .scenius-payment-refund__card {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .scenius-payment-refund__heading > p:last-child {
    font-size: 16px;
  }

  .scenius-payment-refund__pills {
    justify-content: flex-start;
    margin-top: 28px;
  }

  .scenius-payment-refund__pills span {
    width: 100%;
  }

  .scenius-payment-refund__card {
    padding: 29px 23px;
    border-radius: 20px;
  }

  .scenius-payment-refund__note {
    padding: 16px;
  }
}

/*--------------------------------------------------------------
# Scenius About Section Refresh
--------------------------------------------------------------*/
.scenius-about-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.04) 1px, transparent 1px),
    #f7f5ef !important;
  background-size: 38px 38px;
}

.scenius-about-section::before,
.scenius-about-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(194, 152, 27, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.scenius-about-section::before {
  top: -235px;
  left: -120px;
  width: 470px;
  height: 470px;
}

.scenius-about-section::after {
  right: -115px;
  bottom: -230px;
  width: 450px;
  height: 340px;
  transform: rotate(-31deg);
}

.scenius-about-section .container {
  position: relative;
  z-index: 1;
}

.scenius-about-section .scenius-about-text {
  max-width: none;
  min-height: 100%;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(20, 45, 72, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(25, 39, 56, 0.09);
}

.scenius-about-section .scenius-about-text::before {
  top: 0;
  bottom: auto;
  left: clamp(30px, 4vw, 50px);
  width: 82px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #f0c44a, #bb8810);
}

.scenius-about-section .scenius-about-text .scenius-about-kicker {
  margin: 8px 0 17px;
  color: #ae7e08;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.scenius-about-section .scenius-about-text h2 {
  margin-bottom: 26px;
  color: #0d2946;
  font-family: var(--heading-font);
  font-size: clamp(38px, 3.5vw, 55px);
  font-weight: 600;
  line-height: 1.04;
}

.scenius-about-section .scenius-about-text h2 span {
  color: #bd8b0d;
}

.scenius-about-section .scenius-about-text .scenius-about-body {
  display: grid;
  gap: 14px;
}

.scenius-about-section .scenius-about-text .scenius-about-body p {
  margin: 0;
  color: #57677b;
  font-size: 16px;
  line-height: 1.72;
}

.scenius-about-section .scenius-about-text .scenius-about-closing {
  margin: 29px 0 0;
  padding-top: 19px;
  color: #16314d;
  font-family: var(--heading-font);
  font-size: clamp(19px, 1.6vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.38;
}

.scenius-about-section .scenius-about-text .scenius-about-closing::before {
  width: 68px;
  background: linear-gradient(90deg, #d4a223, transparent);
}

.scenius-about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.scenius-about-principles span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #e7d99d;
  border-radius: 999px;
  background: #fffdf5;
  color: #40566e;
  font-size: 12px;
  font-weight: 700;
}

.scenius-about-principles i {
  color: #af8008;
  font-size: 14px;
}

.scenius-about-section .scenius-about-video-composition {
  display: flex;
  align-items: center;
  height: 100%;
  padding: clamp(10px, 2vw, 22px);
}

.scenius-about-section .scenius-about-video-composition::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 3%;
  width: 72%;
  height: 78%;
  border: 1px solid rgba(194, 152, 27, 0.28);
  border-radius: 28px;
  transform: rotate(4deg);
  pointer-events: none;
}

.scenius-about-section .image-composition .image-main {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 27px;
  background: linear-gradient(145deg, #0c2744, #133a5f);
  box-shadow: 0 25px 48px rgba(13, 41, 70, 0.22);
}

.scenius-about-section .image-composition .image-main .about-video {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.scenius-about-video-note {
  position: absolute;
  right: 23px;
  bottom: 23px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(244, 207, 88, 0.5);
  border-radius: 12px;
  background: rgba(10, 31, 54, 0.88);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.19);
  color: #f6f0df;
  font-size: 12px;
  font-weight: 700;
}

.scenius-about-video-note i {
  color: #f4cf58;
  font-size: 17px;
}

@media (max-width: 991px) {
  .scenius-about-section {
    padding: 78px 0;
  }

  .scenius-about-section .scenius-about-text {
    max-width: none;
  }

  .scenius-about-section .scenius-about-video-composition {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .scenius-about-section {
    padding: 62px 0;
  }

  .scenius-about-section .scenius-about-text {
    padding: 32px 23px 27px;
    border-radius: 20px;
  }

  .scenius-about-section .scenius-about-text::before {
    left: 23px;
  }

  .scenius-about-section .scenius-about-text h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .scenius-about-section .scenius-about-text .scenius-about-body p {
    font-size: 15px;
    line-height: 1.67;
  }

  .scenius-about-principles span {
    width: 100%;
  }

  .scenius-about-section .scenius-about-video-composition {
    padding: 8px 0;
  }

  .scenius-about-section .image-composition .image-main {
    padding: 7px;
    border-radius: 20px;
  }

  .scenius-about-section .image-composition .image-main .about-video {
    border-radius: 14px;
  }

  .scenius-about-video-note {
    right: 16px;
    bottom: 16px;
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Scenius About alternate editorial layout */
.scenius-about-section {
  padding: 118px 0;
  background: #fff !important;
}

.scenius-about-section::before {
  top: 0;
  left: 6.5%;
  width: 1px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, #e7c457 13%, #e7c457 87%, transparent);
  opacity: 0.55;
}

.scenius-about-section::after {
  top: -195px;
  right: -155px;
  bottom: auto;
  left: auto;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(194, 152, 27, 0.18);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 80px rgba(243, 202, 80, 0.06);
  transform: none;
}

.scenius-about-section .row {
  flex-direction: row-reverse;
}

.scenius-about-section .scenius-about-text {
  max-width: 580px;
  min-height: auto;
  padding: 22px 0 22px clamp(28px, 4vw, 62px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.scenius-about-section .scenius-about-text::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: auto;
  border-radius: 4px;
  background: linear-gradient(180deg, #f1c64b, #b5830d 68%, rgba(181, 131, 13, 0.1));
}

.scenius-about-section .scenius-about-text::after {
  content: "01";
  position: absolute;
  top: -35px;
  right: 0;
  color: rgba(13, 41, 70, 0.045);
  font-family: var(--heading-font);
  font-size: clamp(100px, 12vw, 170px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.scenius-about-section .scenius-about-text > * {
  position: relative;
  z-index: 1;
}

.scenius-about-section .scenius-about-text .scenius-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ad7d06;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.scenius-about-section .scenius-about-text .scenius-about-kicker::before {
  width: 27px;
  height: 1px;
  content: "";
  background: #c79516;
}

.scenius-about-section .scenius-about-text h2 {
  max-width: 510px;
  margin: 0 0 29px;
  color: #0d2946;
  font-family: var(--heading-font);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.scenius-about-section .scenius-about-text h2 span {
  display: inline;
  color: #b8870e;
}

.scenius-about-section .scenius-about-text .scenius-about-body {
  display: grid;
  gap: 15px;
  max-width: 530px;
}

.scenius-about-section .scenius-about-text .scenius-about-body p {
  margin: 0;
  color: #607084;
  font-size: 16px;
  line-height: 1.75;
}

.scenius-about-section .scenius-about-text .scenius-about-closing {
  max-width: 450px;
  margin: 31px 0 0;
  padding: 0;
  color: #16314d;
  font-family: var(--heading-font);
  font-size: clamp(20px, 1.7vw, 25px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.38;
}

.scenius-about-section .scenius-about-text .scenius-about-closing::before {
  display: none;
}

.scenius-about-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 460px;
  margin-top: 30px;
  border-top: 1px solid #e6ebef;
}

.scenius-about-principles span {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #e6ebef;
  border-radius: 0;
  background: none;
  color: #435870;
  font-size: 13px;
  font-weight: 700;
}

.scenius-about-principles i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #fff4cc;
  color: #a97905;
  font-size: 13px;
}

.scenius-about-section .scenius-about-video-composition {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(20px, 4vw, 55px) 0 0;
}

.scenius-about-section .scenius-about-video-composition::before {
  top: -20px;
  right: 0;
  width: calc(100% - 43px);
  height: calc(100% + 40px);
  border: 0;
  border-radius: 28px;
  background: #f1c64b;
  opacity: 0.9;
  transform: rotate(-3deg);
}

.scenius-about-section .scenius-about-video-composition::after {
  content: "SCENIUS";
  position: absolute;
  right: -13px;
  bottom: 43px;
  color: #0d2946;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scenius-about-section .image-composition .image-main {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: #0b203a;
  box-shadow: 0 27px 56px rgba(13, 41, 70, 0.21);
}

.scenius-about-section .image-composition .image-main .about-video {
  border: 0;
  border-radius: 15px;
  box-shadow: none;
}

.scenius-about-video-note {
  left: 25px;
  right: auto;
  bottom: 25px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  color: #0d2946;
  font-weight: 800;
}

.scenius-about-video-note i {
  color: #ba870a;
}

@media (max-width: 991px) {
  .scenius-about-section {
    padding: 84px 0;
  }

  .scenius-about-section .row {
    flex-direction: column-reverse;
  }

  .scenius-about-section .scenius-about-text {
    max-width: 680px;
    padding-right: 25px;
  }

  .scenius-about-section .scenius-about-video-composition {
    max-width: 760px;
    margin: 0 auto;
    padding-right: 38px;
  }
}

@media (max-width: 575px) {
  .scenius-about-section {
    padding: 66px 0;
  }

  .scenius-about-section::before {
    left: 18px;
  }

  .scenius-about-section .scenius-about-text {
    padding: 16px 0 16px 25px;
  }

  .scenius-about-section .scenius-about-text h2 {
    font-size: clamp(38px, 10vw, 49px);
  }

  .scenius-about-section .scenius-about-text .scenius-about-body p {
    font-size: 15px;
    line-height: 1.68;
  }

  .scenius-about-section .scenius-about-video-composition {
    padding-right: 25px;
  }

  .scenius-about-section .scenius-about-video-composition::before {
    top: -12px;
    right: 0;
    width: calc(100% - 26px);
    height: calc(100% + 24px);
    border-radius: 20px;
  }

  .scenius-about-section .image-composition .image-main {
    padding: 7px;
    border-radius: 18px;
  }

  .scenius-about-section .image-composition .image-main .about-video {
    border-radius: 12px;
  }

  .scenius-about-video-note {
    left: 17px;
    right: auto;
    bottom: 17px;
    padding: 8px 10px;
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Homepage Industries
--------------------------------------------------------------*/
.home-industries {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(194, 152, 27, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(194, 152, 27, 0.045) 1px, transparent 1px),
    #f7f5ef !important;
  background-size: 38px 38px;
}

.home-industries::before,
.home-industries::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(194, 152, 27, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.home-industries::before {
  top: -235px;
  left: -130px;
  width: 460px;
  height: 460px;
}

.home-industries::after {
  right: -145px;
  bottom: -265px;
  width: 500px;
  height: 390px;
  transform: rotate(-30deg);
}

.home-industries .container {
  position: relative;
  z-index: 1;
}

.home-industries__heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.home-industries__eyebrow {
  margin: 0 0 15px;
  color: #b78609;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-industries__heading h2 {
  margin: 0;
  color: #0d2946;
  font-size: clamp(37px, 4.5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-industries__heading > p:last-child {
  max-width: 600px;
  margin: 19px auto 0;
  color: #596a7e;
  font-size: 17px;
  line-height: 1.72;
}

.home-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.home-industry-card {
  --home-industry-accent: #b5830d;
  --home-industry-accent-soft: #fff3cd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(24, 49, 78, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 34px rgba(25, 39, 56, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-industry-card:hover {
  border-color: color-mix(in srgb, var(--home-industry-accent), transparent 36%);
  box-shadow: 0 23px 42px rgba(25, 39, 56, 0.13);
  transform: translateY(-7px);
}

.home-industry-card__visual {
  position: relative;
  display: grid;
  min-height: 212px;
  place-items: center;
  overflow: hidden;
  padding: 15px;
  border-bottom: 1px solid #e7ecf1;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--home-industry-accent), transparent 75%), transparent 65%),
    #eff3f5;
}

.home-industry-card__visual::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -74px;
  width: 178px;
  height: 178px;
  border: 1px solid color-mix(in srgb, var(--home-industry-accent), transparent 66%);
  border-radius: 50%;
  pointer-events: none;
}

.home-industry-card__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 235px;
  border-radius: 13px;
  box-shadow: 0 10px 21px rgba(21, 41, 66, 0.14);
  object-fit: contain;
  transition: transform 0.35s ease;
}

.home-industry-card:hover .home-industry-card__visual img {
  transform: scale(1.025);
}

.home-industry-card__visual > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--home-industry-accent-soft);
  color: var(--home-industry-accent);
  font-size: 18px;
}

.home-industry-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 23px 22px;
}

.home-industry-card__content > p {
  margin: 0 0 8px;
  color: var(--home-industry-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-industry-card h3 {
  margin: 0;
  color: #0d2946;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.home-industry-card h3 a {
  color: inherit;
}

.home-industry-card h3 a:hover {
  color: var(--home-industry-accent);
}

.home-industry-card__intro {
  margin-top: 13px;
  color: #5d6d80;
  font-size: 14px;
  line-height: 1.67;
}

.home-industry-card__focus {
  display: grid;
  gap: 7px;
  width: 100%;
  margin-top: 20px;
  padding: 13px 0;
  border-top: 1px solid #e7ecf1;
  border-bottom: 1px solid #e7ecf1;
}

.home-industry-card__focus span {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  color: #415871;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.home-industry-card__focus i {
  margin-top: 1px;
  color: var(--home-industry-accent);
  font-size: 14px;
}

.home-industry-card__link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--home-industry-accent);
  font-size: 13px;
  font-weight: 800;
}

.home-industries__cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  margin-top: 47px;
  padding: clamp(29px, 4.5vw, 46px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(244, 207, 88, 0.25), transparent 35%),
    linear-gradient(135deg, #0b203a, #0d3559);
  box-shadow: 0 20px 40px rgba(13, 41, 70, 0.2);
}

.home-industries__cta::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -155px;
  width: 335px;
  height: 260px;
  border: 1px solid rgba(244, 207, 88, 0.29);
  border-radius: 50%;
  transform: rotate(-33deg);
}

.home-industries__cta > * {
  position: relative;
  z-index: 1;
}

.home-industries__cta p {
  margin: 0 0 8px;
  color: #f4cf58;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-industries__cta h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.home-industries__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.home-industries__button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 14px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.home-industries__button:hover {
  transform: translateY(-2px);
}

.home-industries__button--light {
  background: #fff;
  color: #0d2946;
}

.home-industries__button--light:hover {
  background: #f4cf58;
  color: #0d2946;
}

.home-industries__button--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.home-industries__button--outline:hover {
  border-color: #f4cf58;
  color: #f4cf58;
}

@media (max-width: 991px) {
  .home-industries {
    padding: 82px 0;
  }

  .home-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-industry-card__content {
    padding: 22px 18px;
  }

  .home-industry-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .home-industries {
    padding: 67px 0;
  }

  .home-industries__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .home-industry-card__visual {
    min-height: 245px;
  }

  .home-industries__cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }
}

@media (max-width: 575px) {
  .home-industries__heading > p:last-child {
    font-size: 16px;
  }

  .home-industry-card {
    border-radius: 21px;
  }

  .home-industries__cta {
    padding: 29px 23px;
    border-radius: 20px;
  }

  .home-industries__cta-actions,
  .home-industries__button {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# RTO Partnership Page
--------------------------------------------------------------*/
.rto-page .main {
  background: #fcfbf8;
}

.rto-partnership {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 204, 90, 0.12), transparent 25%),
    #fcfbf8;
}

.rto-partnership::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image: radial-gradient(rgba(13, 41, 70, 0.12) 0.55px, transparent 0.55px);
  background-size: 9px 9px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 23%, #000 77%, transparent 95%);
  pointer-events: none;
}

.rto-partnership__hero {
  max-width: 1120px;
  margin: 0 auto 49px;
  text-align: center;
}

.rto-partnership__mark {
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 auto 21px;
  object-fit: contain;
}

.rto-partnership__eyebrow {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin: 0 0 19px;
  color: #bd870a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rto-partnership__eyebrow span {
  width: min(13vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d29a0f);
}

.rto-partnership__eyebrow span:last-child {
  background: linear-gradient(90deg, #d29a0f, transparent);
}

.rto-partnership h1 {
  max-width: 970px;
  margin: 0 auto;
  color: #0b2850;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.1vw, 79px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.rto-partnership h1 em {
  color: #bf880d;
  font-style: normal;
}

.rto-partnership__rule {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 25px auto 21px;
}

.rto-partnership__rule span {
  width: 57px;
  height: 3px;
  border-radius: 3px;
  background: #db9e0b;
}

.rto-partnership__rule i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #db9e0b;
}

.rto-partnership__lead {
  max-width: 1000px;
  margin: 0 auto;
  color: #17345b;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.56;
}

.rto-partnership__feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(225px, 0.55fr) minmax(0, 1.45fr) minmax(170px, 0.45fr);
  gap: clamp(25px, 4vw, 56px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(13, 41, 70, 0.08);
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 42px rgba(18, 38, 62, 0.11);
}

.rto-partnership__feature-icon {
  position: relative;
  display: grid;
  width: min(100%, 230px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fffdf7 0 58%, #f8edcd 59% 100%);
}

.rto-partnership__feature-icon::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 27px;
  background: linear-gradient(145deg, #0e3466, #071d42);
  box-shadow: 0 17px 28px rgba(8, 30, 67, 0.2);
}

.rto-partnership__feature-icon div {
  position: relative;
  z-index: 1;
  display: grid;
  width: 55%;
  height: 55%;
  place-items: center;
  border: 2px solid #f1bd2a;
  border-radius: 19px;
  color: #f4c13b;
  font-size: clamp(47px, 5vw, 70px);
}

.rto-partnership__feature-content {
  min-width: 0;
}

.rto-partnership__label {
  margin: 0 0 11px;
  color: #ba840b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rto-partnership__feature h2 {
  margin: 0;
  color: #0b2850;
  font-size: clamp(30px, 3.7vw, 49px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.rto-partnership__feature-content > p:last-of-type {
  max-width: 680px;
  margin: 19px 0 0;
  color: #254263;
  font-size: 16px;
  line-height: 1.7;
}

.rto-partnership__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.rto-partnership__benefits li {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 4px 19px;
  border-left: 1px solid #ecdca8;
  color: #102f56;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
}

.rto-partnership__benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.rto-partnership__benefits i {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #0c3161;
  color: #f2bb28;
  font-size: 18px;
}

.rto-partnership__feature-art {
  position: relative;
  display: grid;
  min-height: 218px;
  place-items: center;
}

.rto-partnership__feature-art-grid {
  width: 155px;
  height: 155px;
  border-radius: 46% 54% 52% 48%;
  opacity: 0.9;
  background-image: radial-gradient(#0c3161 1.25px, transparent 1.25px);
  background-size: 7px 7px;
  transform: rotate(13deg);
}

.rto-partnership__feature-art-orbit {
  position: absolute;
  border: 2px solid #efb51d;
  border-radius: 50%;
}

.rto-partnership__feature-art-orbit--one {
  width: 92px;
  height: 92px;
}

.rto-partnership__feature-art-orbit--two {
  width: 132px;
  height: 46px;
  border-width: 1px;
  transform: rotate(-28deg);
}

.rto-partnership__feature-art > i {
  position: absolute;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 6px solid #f9edcf;
  border-radius: 50%;
  background: #fff;
  color: #0c3161;
  font-size: 27px;
}


.rto-partnership__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.18;
  pointer-events: none;
}

.rto-partnership__glow--one {
  top: 20%;
  left: -170px;
  width: 390px;
  height: 390px;
  background: #f3c64c;
}

.rto-partnership__glow--two {
  right: -190px;
  bottom: 8%;
  width: 390px;
  height: 390px;
  background: #78b4de;
}

@media (max-width: 991px) {
  .rto-partnership {
    padding: 74px 0 84px;
  }

  .rto-partnership__feature {
    grid-template-columns: minmax(190px, 0.52fr) minmax(0, 1fr);
  }

  .rto-partnership__feature-art {
    display: none;
  }

  .rto-partnership__benefits {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .rto-partnership__benefits li,
  .rto-partnership__benefits li:first-child {
    padding: 5px 0;
    border-left: 0;
  }

  .rto-partnership__dots {
    display: none;
  }
}

@media (max-width: 767px) {
  .rto-partnership__hero {
    margin-bottom: 38px;
  }

  .rto-partnership__feature {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: center;
  }

  .rto-partnership__feature-content > p:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }

  .rto-partnership__benefits {
    justify-items: start;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .rto-partnership__feature-icon {
    width: min(190px, 58vw);
  }
}

@media (max-width: 575px) {
  .rto-partnership {
    padding: 63px 0 68px;
  }

  .rto-partnership__mark {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .rto-partnership__eyebrow {
    gap: 11px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .rto-partnership__eyebrow span {
    width: 24px;
  }

  .rto-partnership h1 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .rto-partnership__lead {
    font-size: 16px;
    line-height: 1.64;
  }

  .rto-partnership__feature {
    border-radius: 22px;
  }

  .rto-partnership__feature h2 {
    font-size: 29px;
  }
}

/* RTO partnership content expansion */
.rto-partnership__features {
  display: grid;
  gap: 28px;
}

.rto-partnership__feature--alternate {
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1.45fr) minmax(225px, 0.55fr);
  background:
    radial-gradient(circle at 7% 5%, rgba(244, 207, 88, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.9);
}

.rto-partnership__feature--alternate .rto-partnership__feature-icon {
  grid-column: 3;
}

.rto-partnership__feature--alternate .rto-partnership__feature-content {
  grid-column: 2;
}

.rto-partnership__feature--alternate .rto-partnership__feature-art {
  grid-column: 1;
  grid-row: 1;
}

.rto-partnership__feature--alternate .rto-partnership__feature-art-grid {
  background-image: radial-gradient(#b67d08 1.25px, transparent 1.25px);
}

.rto-partnership__feature--alternate .rto-partnership__feature-art-orbit {
  border-color: #0c3161;
}

.rto-partnership__feature--alternate .rto-partnership__feature-art > i {
  color: #b67d08;
}

.rto-partnership__cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  margin-top: 38px;
  padding: clamp(31px, 5vw, 52px);
  border-radius: 27px;
  background:
    radial-gradient(circle at 9% 0%, rgba(244, 207, 88, 0.26), transparent 35%),
    linear-gradient(135deg, #0b203a, #0d3559);
  box-shadow: 0 21px 42px rgba(13, 41, 70, 0.2);
}

.rto-partnership__cta::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 345px;
  height: 260px;
  border: 1px solid rgba(244, 207, 88, 0.3);
  border-radius: 50%;
  transform: rotate(-32deg);
}

.rto-partnership__cta > * {
  position: relative;
  z-index: 1;
}

.rto-partnership__cta p {
  margin: 0 0 8px;
  color: #f4cf58;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rto-partnership__cta h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 43px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.rto-partnership__cta-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 16px 21px;
  border-radius: 999px;
  background: #fff;
  color: #0d2946;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.rto-partnership__cta-link:hover {
  background: #f4cf58;
  color: #0d2946;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .rto-partnership__feature--alternate {
    grid-template-columns: minmax(190px, 0.52fr) minmax(0, 1fr);
  }

  .rto-partnership__feature--alternate .rto-partnership__feature-icon {
    grid-column: 1;
  }

  .rto-partnership__feature--alternate .rto-partnership__feature-content {
    grid-column: 2;
  }

  .rto-partnership__feature--alternate .rto-partnership__feature-art {
    display: none;
  }
}

@media (max-width: 767px) {
  .rto-partnership__features {
    gap: 20px;
  }

  .rto-partnership__feature--alternate {
    grid-template-columns: 1fr;
  }

  .rto-partnership__feature--alternate .rto-partnership__feature-icon,
  .rto-partnership__feature--alternate .rto-partnership__feature-content {
    grid-column: auto;
  }

  .rto-partnership__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .rto-partnership__cta {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .rto-partnership__cta-link {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader::before {
  content: "";
  position: absolute;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 22deg, #d8a908 54deg, #f4cf46 96deg, transparent 130deg 202deg, #d8a908 234deg, #f4cf46 276deg, transparent 310deg);
  -webkit-mask: radial-gradient(transparent 59%, #000 61%);
  mask: radial-gradient(transparent 59%, #000 61%);
  animation: scenius-preloader-halo 1.25s linear infinite;
}

#preloader img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: scenius-preloader-logo-colour 2s ease-in-out infinite;
}

@keyframes scenius-preloader-halo {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scenius-preloader-logo-colour {
  0%,
  100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  }

  50% {
    filter: brightness(1) invert(0) drop-shadow(0 0 10px rgba(216, 169, 8, 0.45));
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader::before,
  #preloader img {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  padding: 120px 0;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero .hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: center;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image {
  position: relative;
  z-index: 2;
}

.hero .hero-visual .hero-image img {
  border-radius: 20px;
}

.hero .hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .hero-bg-elements .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.hero .hero-bg-elements .bg-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: rotate 20s linear infinite;
}

.hero .hero-bg-elements .bg-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: rotate 15s linear infinite reverse;
}

.hero .hero-bg-elements .bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveParticles 30s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes moveParticles {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-buttons {
    justify-content: center;
  }

  .hero .hero-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about .content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.about .content .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.about .content .features-list li {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  font-weight: 500;
}

.about .content .features-list li i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.about .content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about .content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about .image-composition {
  position: relative;
  padding: 2rem;
}

@media (max-width: 768px) {
  .about .image-composition {
    padding: 1rem;
  }
}

.about .image-composition .image-main {
  position: relative;
  z-index: 2;
}

.about .image-composition .image-main img {
  border-radius: 8px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.about .image-composition .image-main .about-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 8px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-composition .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 3;
}

.about .image-composition .image-secondary img {
  border-radius: 8px;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.about .image-composition .stats-card {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about .image-composition .stats-card {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
  }
}

.about .image-composition .stats-card .stats-item {
  text-align: center;
}

.about .image-composition .stats-card .stats-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 992px) {
  .about .image-composition .stats-card .stats-item h3 {
    font-size: 2rem;
  }
}

.about .image-composition .stats-card .stats-item p {
  margin: 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.5rem;
}

.about .image-composition::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 32px;
}

.contact .quick a,
.contact .quick span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.contact .quick a i,
.contact .quick span i {
  color: var(--accent-color);
  font-size: 18px;
}

.contact .quick a:hover {
  color: var(--accent-color);
}

.contact .php-email-form {
  padding: 40px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact .php-email-form .form-control {
  height: 52px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color) 18%, transparent);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 16px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.contact .php-email-form textarea.form-control {
  height: auto;
  resize: vertical;
}

.contact .php-email-form .btn-submit {
  margin-top: 8px;
  padding: 14px 44px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: all 0.3s ease;
}

.contact .php-email-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 28px;
  }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-content h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-details .service-content .service-image {
  margin: 2.5rem 0;
}

.service-details .service-content .service-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-details .service-features {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-features h4 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-details .service-features .feature-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.service-details .service-features .feature-item h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-details .service-features .feature-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-process {
  margin: 3rem 0;
}

.service-details .service-process h4 {
  color: var(--heading-color);
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-details .service-process .process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.service-details .service-process .process-steps .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  width: 2px;
  height: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateX(-50%);
}

.service-details .service-process .process-steps .step-item .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-details .service-process .process-steps .step-item .step-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-details .service-process .process-steps .step-item .step-content p {
  margin: 0;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .sidebar .service-info,
.service-details .sidebar .service-testimonial,
.service-details .sidebar .inquiry-form {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .sidebar h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-details .service-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-facts li:last-child {
  border-bottom: none;
}

.service-details .service-facts li .fact-label {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-facts li .fact-value {
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-testimonial .testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-testimonial .testimonial-content .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .service-testimonial .testimonial-content .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .service-testimonial .testimonial-content .testimonial-author .author-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-testimonial .testimonial-content .testimonial-author .author-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .inquiry-form .form-control {
  margin-bottom: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.service-details .inquiry-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .inquiry-form input[type=text],
.service-details .inquiry-form input[type=email],
.service-details .inquiry-form input[type=tel],
.service-details .inquiry-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .inquiry-form input[type=text]:focus,
.service-details .inquiry-form input[type=email]:focus,
.service-details .inquiry-form input[type=tel]:focus,
.service-details .inquiry-form textarea:focus {
  border-color: var(--accent-color);
}

.service-details .inquiry-form input[type=text]::placeholder,
.service-details .inquiry-form input[type=email]::placeholder,
.service-details .inquiry-form input[type=tel]::placeholder,
.service-details .inquiry-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .inquiry-form .btn-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details .inquiry-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-content h2 {
    font-size: 2rem;
  }

  .service-details .service-content .service-image {
    margin: 2rem 0;
  }

  .service-details .service-features {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .service-details .sidebar {
    margin-top: 3rem;
  }

  .service-details .sidebar .service-info,
  .service-details .sidebar .service-testimonial,
  .service-details .sidebar .inquiry-form {
    padding: 1.5rem;
  }

  .service-details .process-steps .step-item .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .service-details .process-steps .step-item:not(:last-child)::after {
    left: 1.25rem;
    top: 3rem;
    height: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Scenius Hero Section
--------------------------------------------------------------*/
.scenius-hero {
  --scenius-ink: #020b18;
  --scenius-white: #f8f7f4;
  --scenius-muted: #dddcd8;
  --scenius-gold: #efa516;
  --scenius-gold-light: #ffc85b;
  --scenius-line: rgba(238, 159, 18, .58);
  position: relative;
  top: -100px;
  margin-bottom: -100px;
  isolation: isolate;
  min-height: 100dvh;
  padding: 0;
  padding-top: 100px !important;
  overflow: hidden;
  color: var(--scenius-white);
  background:
    radial-gradient(ellipse 50% 74% at 52% 55%, rgba(16, 43, 69, .30), transparent 70%),
    radial-gradient(ellipse 30% 50% at 95% 27%, rgba(19, 45, 66, .35), transparent 72%),
    linear-gradient(116deg, #020916 0%, #020d1a 45%, #010915 100%);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.scenius-hero::before {
  display: none;
}

.scenius-hero-shell {
  max-width: 1680px;
  min-height: inherit;
  margin: 0 auto;
  padding: 25px 48px;
}

.scenius-hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, .86fr) 1.3fr;
  align-items: center;
  min-height: min(650px, calc(100svh - 132px));
  padding: 30px 7.7%;
}

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

.scenius-hero-content h3 {
  margin: 0 0 18px;
  color: var(--scenius-white);
  font-family: Georgia, "Times New Roman", serif;
  max-width: 100%;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .02em;
  white-space: normal;
}

.scenius-hero-content h3 span {
  color: var(--scenius-gold);
}

.scenius-hero-tagline {
  margin: 0;
  color: #ffc51e;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 4.2px;
}

.scenius-tagline-rule {
  position: relative;
  width: 390px;
  height: 2px;
  margin: 17px 0 37px;
  background: linear-gradient(90deg, #df7105, #fbd130 52%, rgba(220, 111, 0, .02));
}

.scenius-tagline-rule::after {
  position: absolute;
  top: -2px;
  left: 53%;
  width: 13px;
  height: 5px;
  content: "";
  border-radius: 100%;
  background: #fff2a4;
  box-shadow: 0 0 12px 4px #ffb700;
}

.scenius-hero-actions,
.scenius-hero-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.scenius-hero-actions {
  gap: 12px;
}

.scenius-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  min-height: 58px;
  padding: 12px 22px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.scenius-hero-button:hover {
  transform: translateY(-3px);
}

.scenius-hero-button-primary {
  color: #16100a;
  border-color: #f5af27;
  background: linear-gradient(115deg, #ffc34c, #e79712);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 10px 28px rgba(0, 0, 0, .22);
}

.scenius-hero-button-primary:hover {
  color: #16100a;
  background: linear-gradient(115deg, #ffd069, #eea520);
}

.scenius-hero-button-secondary {
  min-width: 205px;
  color: var(--scenius-white);
  border-color: #da7c08;
  background: rgba(1, 13, 28, .35);
}

.scenius-hero-button-secondary:hover {
  color: var(--scenius-white);
  background: rgba(218, 124, 8, .18);
}

.scenius-hero-button .bi-arrow-right {
  font-size: 25px;
}

.scenius-button-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.scenius-button-icon .bi-chat-dots {
  font-size: 15px;
}

.scenius-hero-socials {
  gap: 8px;
  margin-top: 22px;
  padding-left: 2px;
}

.scenius-social-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--scenius-gold);
  border-radius: 50%;
  color: var(--scenius-gold-light);
  font-size: 16px;
  line-height: 1;
}

.scenius-social-link:hover {
  color: var(--scenius-ink);
  background: var(--scenius-gold-light);
  border-color: var(--scenius-gold-light);
  transform: translateY(-2px);
}

.scenius-hero-art {
  position: relative;
  z-index: 1;
  min-height: 510px;
  height: 100%;
  isolation: isolate;
}

.scenius-hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 61vw);
  aspect-ratio: 1;
  transform: translate(-53%, -48%);
  pointer-events: none;
}

.scenius-hero-art-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.scenius-art-label {
  position: absolute;
  z-index: 3;
  color: #ffc85b;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(239, 165, 22, .75);
  opacity: 1;
  transform: none;
  animation: none;
}

.scenius-art-label::after {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 1px;
  height: var(--leader, 48px);
  content: "";
  background: linear-gradient(#ca7105, rgba(239, 165, 22, .12));
  box-shadow: 0 0 6px rgba(239, 165, 22, .5);
}

.scenius-art-label::before {
  position: absolute;
  top: calc(100% + 7px + var(--leader, 48px));
  left: calc(50% - 3px);
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #fff2a4;
  box-shadow: 0 0 12px 4px rgba(255, 183, 0, .8);
}

.scenius-stage-experience { top: 63%; left: 14%; --leader: 42px; --label-delay: 1.25s; }
.scenius-stage-evaluation { top: 55%; left: 34%; --leader: 55px; --label-delay: 1.55s; }
.scenius-stage-qualification { top: 42%; left: 53%; --leader: 52px; --label-delay: 1.85s; }
.scenius-stage-licence { top: 55%; right: 5%; --leader: 46px; --label-delay: 2.15s; }
.scenius-stage-opportunity { top: 27%; right: 1%; --leader: 43px; --label-delay: 2.45s; }

@keyframes scenius-label-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scenius-hero-closing {
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
  padding-top: clamp(36px, 4vw, 64px);
}

.scenius-hero-closing .scenius-hero-socials {
  justify-content: center;
  margin: 0 0 20px;
  padding-left: 0;
}

.scenius-hero-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 4.5%;
}

.scenius-hero-divider::before,
.scenius-hero-divider::after {
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--scenius-line));
}

.scenius-hero-divider::after {
  background: linear-gradient(90deg, var(--scenius-line), transparent);
}

.scenius-hero-divider-logo {
  display: block;
  width: 72px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(239, 165, 22, .32));
}

.scenius-hero-mantra {
  margin: 22px 0 0;
  color: #f1efeb;
  font-size: 16px;
  letter-spacing: 3.2px;
  text-align: center;
}

.scenius-hero-mantra b {
  color: var(--scenius-gold);
  font-weight: 500;
}

@media (max-width: 1120px) {
  .scenius-hero-shell {
    padding-right: 28px;
    padding-left: 28px;
  }

  .scenius-hero-grid {
    padding-right: 3%;
    padding-left: 5%;
  }

  .scenius-hero-visual {
    width: 740px;
  }

  .scenius-tagline-rule {
    width: 290px;
  }
}

@media (max-width: 840px) {
  .scenius-hero {
    min-height: 100dvh;
  }

  .scenius-hero-grid {
    display: block;
    min-height: 0;
    padding: 78px 8% 0;
  }

  .scenius-hero-art {
    min-height: 405px;
    margin: -20px -9% 0;
  }

  .scenius-hero-visual {
    top: 45%;
    width: min(720px, 105vw);
    transform: translate(-50%, -50%);
  }

  .scenius-art-label {
    font-size: 11px;
  }

  .scenius-hero-content h3 {
    font-size: clamp(30px, 7vw, 42px);
    white-space: normal;
  }

  .scenius-tagline-rule {
    width: 220px;
  }

  .scenius-hero-closing {
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scenius-art-label {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 540px) {
  .scenius-hero-shell {
    padding: 0 20px 25px;
  }

  .scenius-hero-grid {
    padding: 58px 2% 0;
  }

  .scenius-hero-content h3 {
    letter-spacing: -1px;
  }

  .scenius-hero-tagline {
    font-size: 14px;
    letter-spacing: 2.4px;
  }

  .scenius-tagline-rule {
    width: 100%;
  }

  .scenius-hero-actions {
    display: grid;
    gap: 10px;
  }

  .scenius-hero-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 11px 18px;
    font-size: 16px;
  }

  .scenius-hero-socials {
    justify-content: center;
    margin-top: 18px;
    padding-left: 0;
  }

  .scenius-hero-art {
    min-height: 300px;
    margin-top: 15px;
  }

  .scenius-hero-visual {
    width: min(600px, 102vw);
  }

  .scenius-art-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .scenius-hero-closing {
    padding-top: 28px;
  }

  .scenius-hero-divider {
    margin: 0;
  }

  .scenius-hero-mantra {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .scenius-hero-divider-logo {
    width: 58px;
    height: 44px;
  }
}

/* Scenius navbar brand */
.header .scenius-navbar-brand {
  gap: 9px;
  color: #f8f7f4;
}

.header .scenius-navbar-brand:hover {
  color: #f8f7f4;
}

.header .scenius-navbar-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #2375df;
  border-radius: 8px;
  background: linear-gradient(145deg, #0759c0, #082052 70%);
  box-shadow: inset 0 0 16px rgba(48, 135, 255, .38);
}

.header .logo .scenius-navbar-mark img {
  width: 32px;
  height: 32px;
  max-height: none;
  margin: 0;
  object-fit: contain;
}

.header .scenius-navbar-name {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

@media (max-width: 576px) {
  .header .scenius-navbar-mark {
    width: 38px;
    height: 38px;
  }

  .header .logo .scenius-navbar-mark img {
    width: 29px;
    height: 29px;
  }

  .header .scenius-navbar-name {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Scenius About Text
--------------------------------------------------------------*/
.about .scenius-about-text {
  position: relative;
  max-width: 540px;
  padding-left: clamp(20px, 3vw, 38px);
}

.about .scenius-about-text::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, #ffc85b, #d97d08 58%, transparent);
}

.about .scenius-about-text .scenius-about-kicker {
  margin: 0 0 18px;
  color: #ffc85b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.about .scenius-about-text h2 {
  margin: 0 0 30px;
  color: var(--heading-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.about .scenius-about-text h2 span {
  display: block;
  color: #efa516;
}

.about .scenius-about-text .scenius-about-body p {
  margin: 0 0 19px;
  color: color-mix(in srgb, var(--default-color), #ffffff 22%);
  font-size: 16px;
  line-height: 1.72;
}

.about .scenius-about-text .scenius-about-body p:last-child {
  margin-bottom: 0;
}

.about .scenius-about-text .scenius-about-closing {
  position: relative;
  margin: 34px 0 0;
  padding-top: 21px;
  color: var(--heading-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 25px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.about .scenius-about-text .scenius-about-closing::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #efa516, transparent);
}

@media (max-width: 991px) {
  .about .scenius-about-text {
    max-width: 680px;
  }
}

@media (max-width: 575px) {
  .about .scenius-about-text {
    padding-left: 18px;
  }

  .about .scenius-about-text h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .about .scenius-about-text .scenius-about-body p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Scenius About colour contrast */
.scenius-about-section .scenius-about-text .scenius-about-kicker {
  color: #9a6c00 !important;
}

.scenius-about-section .scenius-about-text h2 {
  color: #082744 !important;
}

.scenius-about-section .scenius-about-text h2 span {
  color: #a87500 !important;
}

.scenius-about-section .scenius-about-text .scenius-about-body p {
  color: #3f566e !important;
}

.scenius-about-section .scenius-about-text .scenius-about-closing {
  color: #0a2b49 !important;
}

.scenius-about-section .scenius-about-principles span {
  color: #29455f !important;
}

.scenius-about-section .scenius-about-principles i {
  color: #8b6300 !important;
}

.scenius-about-section .scenius-about-video-note {
  color: #082744 !important;
}

/*--------------------------------------------------------------
# Home RTO Partnership Preview
--------------------------------------------------------------*/
.home-rto {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) 0;
  background: #f7f5ef !important;
  isolation: isolate;
}

.home-rto__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.home-rto__glow--one {
  top: -190px;
  left: -190px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237, 172, 29, .14), transparent 68%);
}

.home-rto__glow--two {
  right: -220px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(21, 72, 122, .1), transparent 68%);
}

.home-rto__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
}

.home-rto__content {
  max-width: 540px;
}

.home-rto__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #a87500;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-rto__eyebrow::after {
  width: 52px;
  height: 1px;
  content: "";
  background: #d9a931;
}

.home-rto__eyebrow img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.home-rto__content h2 {
  max-width: 520px;
  margin: 0 0 22px;
  color: #082744;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.home-rto__content h2 span {
  display: block;
  color: #a87500;
}

.home-rto__content > p:not(.home-rto__eyebrow) {
  margin: 0;
  color: #405970;
  font-size: 17px;
  line-height: 1.78;
}

.home-rto__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d5a32a;
  color: #092c4a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
}

.home-rto__link:hover {
  gap: 15px;
  color: #a87500;
}

.home-rto__link i {
  font-size: 18px;
}

.home-rto__steps {
  display: grid;
  gap: 14px;
}

.home-rto__steps article {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 128px;
  padding: 25px 29px;
  border: 1px solid rgba(9, 44, 74, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .79);
  box-shadow: 0 16px 34px rgba(11, 43, 76, .055);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-rto__steps article:hover {
  transform: translateX(-6px);
  box-shadow: 0 20px 42px rgba(11, 43, 76, .1);
}

.home-rto__step-number {
  align-self: start;
  color: #b68110;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.home-rto__steps article > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #0a3155, #082443);
  color: #f1b128;
  font-size: 21px;
  box-shadow: 0 9px 18px rgba(5, 35, 65, .17);
}

.home-rto__steps h3 {
  margin: 0 0 5px;
  color: #092c4a;
  font-size: 19px;
  font-weight: 700;
}

.home-rto__steps p {
  margin: 0;
  color: #567087;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .home-rto__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-rto__content {
    max-width: 680px;
  }
}

@media (max-width: 575px) {
  .home-rto {
    padding: 68px 0;
  }

  .home-rto__content h2 {
    font-size: 36px;
  }

  .home-rto__content > p:not(.home-rto__eyebrow) {
    font-size: 16px;
  }

  .home-rto__steps article {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 15px;
    min-height: 0;
    padding: 22px 20px;
  }

  .home-rto__step-number {
    grid-column: 1 / -1;
  }

  .home-rto__steps article:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# RPL Simplified Page
--------------------------------------------------------------*/
.rpl-simplified-page {
  --rpl-ink: #082744;
  --rpl-deep: #061d37;
  --rpl-gold: #b47d08;
  --rpl-gold-light: #f3bf45;
  --rpl-muted: #526c83;
  --rpl-cream: #f7f5ef;
  background: #fff;
}

.rpl-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 clamp(74px, 9vw, 130px);
  background: linear-gradient(125deg, #f9f7f1 0%, #fff 51%, #f1f6f8 100%);
}

.rpl-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
}

.rpl-hero__orb--gold {
  top: -190px;
  left: -155px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(243, 191, 69, .18), transparent 68%);
}

.rpl-hero__orb--blue {
  right: -200px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(42, 104, 151, .12), transparent 69%);
}

.rpl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(365px, .75fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}

.rpl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 29px;
  color: #668096;
  font-size: 13px;
}

.rpl-breadcrumb a { color: #506f8a; text-decoration: none; }
.rpl-breadcrumb a:hover { color: var(--rpl-gold); }
.rpl-breadcrumb i { color: #c3993c; font-size: 10px; }

.rpl-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--rpl-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.rpl-eyebrow img { width: 28px; height: 28px; object-fit: contain; }

.rpl-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--rpl-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.1vw, 76px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.055em;
}

.rpl-hero h1 span { display: block; color: var(--rpl-gold); }

.rpl-hero__lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: #405b73;
  font-size: 18px;
  line-height: 1.74;
}

.rpl-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }

.rpl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.rpl-button:hover { transform: translateY(-3px); }
.rpl-button--primary { min-height: 52px; padding: 15px 22px; background: linear-gradient(135deg, #eeb13c, #ad7405); box-shadow: 0 13px 24px rgba(178, 122, 10, .22); color: #081f38; }
.rpl-button--primary:hover { color: #081f38; box-shadow: 0 17px 30px rgba(178, 122, 10, .3); }
.rpl-button--text { padding: 10px 0; border-radius: 0; border-bottom-color: #c29124; color: var(--rpl-ink); }
.rpl-button--text:hover { color: var(--rpl-gold); }
.rpl-button--light { min-height: 52px; padding: 15px 23px; background: #fff; color: var(--rpl-ink); }
.rpl-button--light:hover { color: var(--rpl-ink); box-shadow: 0 15px 30px rgba(0, 0, 0, .18); }

.rpl-hero__visual { position: relative; min-height: 420px; isolation: isolate; }
.rpl-hero__ring { position: absolute; z-index: -1; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.rpl-hero__ring--outer { width: min(440px, 100%); aspect-ratio: 1; border: 1px solid rgba(177, 120, 7, .26); box-shadow: inset 0 0 0 30px rgba(231, 186, 79, .05); }
.rpl-hero__ring--inner { width: min(310px, 72%); aspect-ratio: 1; border: 1px dashed rgba(24, 83, 127, .24); animation: rpl-orbit 24s linear infinite; }

.rpl-hero__symbol {
  position: absolute;
  top: 50%; left: 50%;
  display: grid;
  width: 154px; height: 154px;
  place-items: center;
  border: 1px solid rgba(225, 173, 52, .72);
  border-radius: 42px;
  background: linear-gradient(145deg, #0c416c, #061e3a);
  box-shadow: 0 25px 46px rgba(5, 35, 65, .25);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.rpl-hero__symbol img { width: 102px; height: 102px; object-fit: contain; }
.rpl-hero__card { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(7, 42, 73, .09); border-radius: 12px; background: rgba(255,255,255,.9); box-shadow: 0 14px 25px rgba(8, 39, 68, .12); color: #153b5e; font-size: 12px; font-weight: 700; }
.rpl-hero__card i { color: var(--rpl-gold); font-size: 17px; }
.rpl-hero__card--experience { top: 10%; left: 4%; }
.rpl-hero__card--evidence { right: 1%; bottom: 19%; }
.rpl-hero__card--outcome { top: 20%; right: 2%; }

.rpl-introduction { padding: clamp(74px, 9vw, 120px) 0; background: #fff; }
.rpl-introduction__grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); gap: clamp(36px, 8vw, 130px); align-items: start; }
.rpl-introduction__heading h2, .rpl-section-heading h2, .rpl-evidence h2, .rpl-faq h2 { margin: 0; color: var(--rpl-ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 56px); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.rpl-introduction__copy > p { margin: 5px 0 25px; color: #425e76; font-size: 17px; line-height: 1.78; }
.rpl-introduction__copy aside { display: flex; gap: 12px; padding: 17px 20px; border-left: 3px solid #dda527; border-radius: 0 12px 12px 0; background: #f8f3e7; color: #26455f; font-size: 14px; line-height: 1.58; }
.rpl-introduction__copy aside i { color: var(--rpl-gold); font-size: 20px; }

.rpl-process { padding: clamp(74px, 9vw, 122px) 0; background: var(--rpl-cream); }
.rpl-section-heading { max-width: 735px; margin: 0 auto; text-align: center; }
.rpl-section-heading .rpl-eyebrow { justify-content: center; }
.rpl-section-heading > p:last-child { margin: 18px 0 0; color: #536e85; font-size: 16px; line-height: 1.7; }
.rpl-process__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 0; margin: 58px 0 0; list-style: none; }
.rpl-process__steps li { position: relative; min-height: 264px; padding: 27px 25px; border: 1px solid rgba(10, 49, 85, .09); border-radius: 22px; background: #fff; box-shadow: 0 16px 35px rgba(12, 42, 71, .055); }
.rpl-process__number { display: block; margin-bottom: 35px; color: #bd850f; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.rpl-process__steps li > i { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 23px; border-radius: 14px; background: #092f52; color: #efb42e; font-size: 21px; }
.rpl-process__steps h3 { margin: 0 0 9px; color: #0b3152; font-size: 19px; font-weight: 700; }
.rpl-process__steps p { margin: 0; color: #587086; font-size: 14px; line-height: 1.63; }

.rpl-evidence { padding: clamp(76px, 9vw, 128px) 0; background: #fff; }
.rpl-evidence__grid { display: grid; grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr); gap: clamp(40px, 8vw, 126px); align-items: center; }
.rpl-evidence__content > p:not(.rpl-eyebrow):not(.rpl-evidence__note) { margin: 22px 0 0; color: #455f76; font-size: 17px; line-height: 1.76; }
.rpl-evidence__note { margin: 23px 0 0; color: #9b720f; font-size: 13px; font-style: italic; line-height: 1.55; }
.rpl-evidence__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.rpl-evidence__cards article { min-height: 190px; padding: 25px; border: 1px solid #edf0f2; border-radius: 19px; background: linear-gradient(145deg, #fff, #f8fbfc); box-shadow: 0 12px 28px rgba(8, 39, 68, .05); }
.rpl-evidence__cards article > i { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 19px; border-radius: 13px; background: #f8edcd; color: #a87308; font-size: 20px; }
.rpl-evidence__cards h3 { margin: 0 0 7px; color: #0b3152; font-size: 17px; font-weight: 700; }
.rpl-evidence__cards p { margin: 0; color: #5c7389; font-size: 13px; line-height: 1.58; }

.rpl-comparison { padding: clamp(76px, 9vw, 124px) 0; background: linear-gradient(145deg, #092e4e, #061c37); }
.rpl-comparison .rpl-section-heading h2 { color: #fff; }
.rpl-comparison .rpl-section-heading .rpl-eyebrow { color: #f1ba38; }
.rpl-comparison .rpl-section-heading > p:last-child { color: #c4d1dc; }
.rpl-comparison__table { overflow: hidden; margin-top: 52px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 20px; }
.rpl-comparison__table > div { display: grid; grid-template-columns: .72fr 1fr 1fr; }
.rpl-comparison__table > div > * { min-width: 0; margin: 0; padding: 20px 23px; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); }
.rpl-comparison__table > div > *:last-child { border-right: 0; }
.rpl-comparison__table > div:last-child > * { border-bottom: 0; }
.rpl-comparison__head { background: rgba(248, 189, 57, .13); }
.rpl-comparison__head span, .rpl-comparison__table > div:not(.rpl-comparison__head) > span { color: #f1bd45; font-size: 13px; font-weight: 700; }
.rpl-comparison__head strong { color: #fff; font-size: 15px; }
.rpl-comparison__table p { color: #d4e0e8; font-size: 14px; line-height: 1.6; }

.rpl-faq { padding: clamp(76px, 9vw, 126px) 0; background: #fff; }
.rpl-faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 9vw, 140px); align-items: start; }
.rpl-faq__grid header > p:not(.rpl-eyebrow) { margin: 21px 0 27px; color: #536d84; font-size: 16px; line-height: 1.72; }
.rpl-faq__items { display: grid; gap: 12px; }
.rpl-faq__items details { border: 1px solid #e6ebee; border-radius: 15px; background: #fff; transition: box-shadow .2s ease; }
.rpl-faq__items details[open] { border-color: rgba(201, 147, 25, .45); box-shadow: 0 12px 28px rgba(8,39,68,.06); }
.rpl-faq__items summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 23px; color: #0b3152; cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
.rpl-faq__items summary::-webkit-details-marker { display: none; }
.rpl-faq__items summary i { color: #b37c08; font-size: 15px; transition: transform .2s ease; }
.rpl-faq__items details[open] summary i { transform: rotate(45deg); }
.rpl-faq__items details p { margin: -2px 23px 22px; color: #5b7288; font-size: 14px; line-height: 1.68; }

.rpl-cta { padding: clamp(66px, 8vw, 100px) 0; background: linear-gradient(125deg, #bd820b, #f0b93a 52%, #d99c1c); text-align: center; }
.rpl-cta div { max-width: 760px; margin: auto; }
.rpl-cta p { margin: 0 0 9px; color: #19324d; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rpl-cta h2 { margin: 0; color: #071f39; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 53px); font-weight: 500; line-height: 1.09; letter-spacing: -.04em; }
.rpl-cta .rpl-button { margin-top: 27px; }

@keyframes rpl-orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rpl-hero__ring--inner { animation: none; } }
@media (max-width: 991px) { .rpl-hero__grid, .rpl-introduction__grid, .rpl-evidence__grid, .rpl-faq__grid { grid-template-columns: 1fr; } .rpl-hero__content { max-width: 720px; } .rpl-hero__visual { min-height: 365px; max-width: 540px; margin: 0 auto; width: 100%; } .rpl-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .rpl-process__steps li { min-height: 235px; } }
@media (max-width: 575px) { .rpl-hero { padding-top: 58px; } .rpl-hero h1 { font-size: 45px; } .rpl-hero__lead { font-size: 16px; } .rpl-hero__actions { gap: 18px; } .rpl-hero__visual { min-height: 300px; transform: scale(.87); transform-origin: top center; margin-bottom: -35px; } .rpl-introduction__heading h2, .rpl-section-heading h2, .rpl-evidence h2, .rpl-faq h2 { font-size: 34px; } .rpl-process__steps, .rpl-evidence__cards { grid-template-columns: 1fr; } .rpl-process__steps { margin-top: 39px; } .rpl-comparison__table { overflow-x: auto; } .rpl-comparison__table > div { min-width: 720px; } .rpl-comparison__table > div > * { padding: 16px; } .rpl-faq__items summary { padding: 19px; font-size: 15px; } .rpl-faq__items details p { margin-right: 19px; margin-left: 19px; } }

/*--------------------------------------------------------------
# Home RPL Preview
--------------------------------------------------------------*/
.home-rpl {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 128px) 0;
  background: linear-gradient(140deg, #fff 0%, #f6f4ee 50%, #edf5f8 100%) !important;
}

.home-rpl__heading {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.home-rpl__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: #ad7808;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-rpl__eyebrow img { width: 28px; height: 28px; object-fit: contain; }

.home-rpl__heading h2 {
  margin: 0;
  color: #082744;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.home-rpl__heading h2 span { color: #aa7608; }

.home-rpl__heading > p:last-child {
  max-width: 670px;
  margin: 21px auto 0;
  color: #49637a;
  font-size: 17px;
  line-height: 1.75;
}

.home-rpl__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 53px;
}

.home-rpl__grid article {
  position: relative;
  min-height: 278px;
  padding: 29px 27px;
  border: 1px solid rgba(7, 44, 75, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 17px 36px rgba(9, 43, 74, .055);
  transition: transform .22s ease, box-shadow .22s ease;
}

.home-rpl__grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 42px rgba(9, 43, 74, .11);
}

.home-rpl__grid article > span {
  display: block;
  color: #b98310;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.home-rpl__grid article > i {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  margin: 27px 0 21px;
  border-radius: 15px;
  background: linear-gradient(145deg, #0a365b, #071e3a);
  color: #efb534;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(7, 36, 66, .17);
}

.home-rpl__grid h3 {
  margin: 0 0 9px;
  color: #0a3153;
  font-size: 19px;
  font-weight: 700;
}

.home-rpl__grid p {
  margin: 0;
  color: #587087;
  font-size: 14px;
  line-height: 1.62;
}

.home-rpl__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 23px 18px 25px;
  border: 1px solid rgba(192, 143, 24, .28);
  border-radius: 16px;
  background: rgba(255, 250, 238, .74);
}

.home-rpl__footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #4e6377;
  font-size: 13px;
  line-height: 1.5;
}

.home-rpl__footer p i { color: #ad7808; font-size: 19px; }

.home-rpl__link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #082b4a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: gap .2s ease, color .2s ease;
}

.home-rpl__link:hover { gap: 14px; color: #a57005; }

@media (max-width: 767px) {
  .home-rpl__grid { grid-template-columns: 1fr; margin-top: 40px; }
  .home-rpl__grid article { min-height: 0; }
  .home-rpl__footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575px) {
  .home-rpl { padding: 68px 0; }
  .home-rpl__heading h2 { font-size: 37px; }
  .home-rpl__heading > p:last-child { font-size: 16px; }
  .home-rpl__grid article:hover { transform: none; }
}

/*--------------------------------------------------------------
# Queries Page
--------------------------------------------------------------*/
.queries-page {
  background: #fff;
}

.queries-page .header {
  background: #07101e;
}

.queries-page .header .header-container {
  background: #1b1933;
}

.queries-directory-group {
  --directory-accent: #a87809;
  --directory-accent-soft: #fff1c9;
}

.queries-directory-card__image {
  min-height: 132px;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 185, 68, .24), transparent 65%),
    linear-gradient(135deg, #f7f9fa, #eef5f7);
}

.queries-directory-card__image i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #0a385e, #08213f);
  color: #efb334;
  font-size: 22px;
  box-shadow: 0 10px 19px rgba(7, 36, 66, .17);
}

.queries-directory-card__image span {
  color: #416077;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.queries-directory-card__answer {
  display: block;
  margin-top: 13px;
  color: #5c7388;
  font-size: 13px;
  line-height: 1.63;
}

@media (max-width: 575px) {
  .queries-directory-card__image {
    min-height: 116px;
  }
}

/* Scenius contact form safeguards */
.scenius-contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact .recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(239, 183, 57, 0.24);
  border-radius: 14px;
  background: rgba(7, 16, 30, 0.74);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 10px 24px rgba(3, 10, 20, 0.16);
}

.contact .recaptcha-error {
  color: #ffe0a0;
  background: rgba(140, 66, 28, 0.38);
  border-color: rgba(239, 183, 57, 0.36);
}

/* Contact submission feedback */
.scenius-contact-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  max-width: 34rem;
  margin: 0 auto 1.1rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 28px rgba(3, 10, 20, 0.14);
  animation: scenius-contact-notice-in 0.35s ease both;
}

.scenius-contact-notice::before {
  font-size: 1.1rem;
  line-height: 1;
}

.scenius-contact-notice[data-state="success"] {
  color: #e1f9eb;
  border-color: rgba(87, 204, 137, 0.42);
  background: linear-gradient(135deg, #123e35, #176244);
}

.scenius-contact-notice[data-state="success"]::before {
  content: "✓";
}

.scenius-contact-notice[data-state="error"] {
  color: #ffe0bc;
  border-color: rgba(241, 161, 78, 0.44);
  background: linear-gradient(135deg, #4a2924, #68352c);
}

.scenius-contact-notice[data-state="error"]::before {
  content: "!";
}

.contact .php-email-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 11.5rem;
}

.contact .php-email-form .btn-submit:disabled {
  cursor: wait;
  opacity: 0.86;
  transform: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.btn-submit__loader {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: scenius-contact-button-spin 0.7s linear infinite;
}

.contact .php-email-form .btn-submit.is-loading .btn-submit__loader {
  display: block;
}

@keyframes scenius-contact-notice-in {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scenius-contact-button-spin {
  to { transform: rotate(360deg); }
}

/* --- Modern Lucrative Toast Notifications --- */
.scenius-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  width: calc(100% - 48px);
  pointer-events: none;
}

.scenius-toast {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  color: #ffffff;
  font-family: var(--default-font), sans-serif;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: scenius-toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.scenius-toast.fade-out {
  animation: scenius-toast-out 0.35s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

/* Toast States Styling */
.scenius-toast-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(4, 120, 87, 0.25));
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15), 0 16px 36px rgba(0, 0, 0, 0.4);
}

.scenius-toast-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(180, 83, 9, 0.25));
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15), 0 16px 36px rgba(0, 0, 0, 0.4);
}

.scenius-toast-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.25));
  border: 1px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15), 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* Toast Inner Layout */
.scenius-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.scenius-toast-success .scenius-toast-icon {
  color: #34d399;
}

.scenius-toast-warning .scenius-toast-icon {
  color: #fbbf24;
}

.scenius-toast-error .scenius-toast-icon {
  color: #f87171;
}

.scenius-toast-content {
  flex-grow: 1;
  padding-right: 18px;
}

.scenius-toast-title {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--heading-font), sans-serif;
  letter-spacing: 0.5px;
}

.scenius-toast-success .scenius-toast-title {
  color: #a7f3d0;
}

.scenius-toast-warning .scenius-toast-title {
  color: #fde68a;
}

.scenius-toast-error .scenius-toast-title {
  color: #fca5a5;
}

.scenius-toast-message {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #e2e8f0;
  font-weight: 500;
}

/* Close Button */
.scenius-toast-close {
  background: none;
  border: none;
  padding: 4px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: -2px;
  margin-right: -6px;
  border-radius: 50%;
}

.scenius-toast-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.scenius-toast-close i {
  font-size: 1.1rem;
}

/* Progress Bar */
.scenius-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.scenius-toast-progress-bar {
  height: 100%;
  width: 100%;
}

.scenius-toast-success .scenius-toast-progress-bar {
  background: #34d399;
}

.scenius-toast-warning .scenius-toast-progress-bar {
  background: #fbbf24;
}

/* Keyframes */
@keyframes scenius-toast-in {
  from {
    transform: translateX(100px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes scenius-toast-out {
  from {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateX(80px) scale(0.9);
    opacity: 0;
  }
}

@keyframes scenius-toast-progress-run {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .scenius-toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    bottom: auto;
    width: auto;
    max-width: none;
  }
  @keyframes scenius-toast-in {
    from {
      transform: translateY(-50px) scale(0.95);
      opacity: 0;
    }
    to {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  @keyframes scenius-toast-out {
    from {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    to {
      transform: translateY(-30px) scale(0.95);
      opacity: 0;
    }
  }
}

/*--------------------------------------------------------------
# Submissions Dashboard (Admin)
--------------------------------------------------------------*/
.submissions-page .qualifications-directory-grid.queries-directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submissions-page .scenius-submission-card {
  border-radius: 24px;
  background:
    radial-gradient(620px 200px at 8% -10%, rgba(239, 179, 52, 0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fdfdff 100%);
  box-shadow: 0 12px 28px rgba(25, 39, 56, 0.06), 0 2px 6px rgba(25, 39, 56, 0.04);
  transition: transform 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.32s ease;
}

.submissions-page .scenius-submission-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #efb334 0%, #ffc85b 45%, rgba(239, 179, 52, 0.25) 100%);
}

.submissions-page .scenius-submission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(25, 39, 56, 0.12), 0 6px 14px rgba(25, 39, 56, 0.06);
}

.submissions-page .scenius-divider {
  border-bottom: 1px dashed #e7ecf1;
}

.submissions-page .scenius-divider-top {
  border-top: 1px dashed #e7ecf1;
}

.submissions-page .scenius-title {
  color: #0a2f50;
}

.submissions-page .badge-scenius-new {
  background: rgba(56, 189, 248, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.submissions-page .badge-scenius-replied {
  background: #fff6e0;
  color: #a87902;
  border: 1px solid rgba(239, 179, 52, 0.32);
}

.submissions-page .btn-scenius-gold {
  background: linear-gradient(135deg, #efb334, #d99c1c);
  color: #071d37;
  border: none;
  box-shadow: 0 6px 16px rgba(239, 179, 52, 0.28);
  transition: all 0.25s ease;
}

.submissions-page .btn-scenius-gold:hover,
.submissions-page .btn-scenius-gold:focus {
  background: linear-gradient(135deg, #efb334, #d99c1c);
  color: #071d37;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(239, 179, 52, 0.42);
  filter: brightness(1.05);
}

.submissions-page .scenius-sender {
  background: linear-gradient(135deg, rgba(239, 179, 52, 0.06), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(239, 179, 52, 0.16);
}

.submissions-page .scenius-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #efb334, #f6c453);
  color: #071d37;
  font-family: var(--heading-font), sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(239, 179, 52, 0.32);
}

.submissions-page .scenius-email {
  color: #0284c7;
  font-size: 0.86rem;
  word-break: break-all;
  transition: color 0.2s ease;
}

.submissions-page .scenius-email:hover {
  color: #0369a1;
  text-decoration: underline;
}

.submissions-page .scenius-message {
  background: #f6f9fc;
  border: 1px solid #e3ecf4;
}

.submissions-page .scenius-message::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #efb334, #38bdf8);
}

.submissions-page .scenius-gold-text {
  color: #a87902;
}

.submissions-page .scenius-reply {
  background: linear-gradient(135deg, rgba(239, 179, 52, 0.07), rgba(239, 179, 52, 0.02));
  border: 1px solid rgba(239, 179, 52, 0.2);
  border-left: 3px solid #efb334;
}

.submissions-page .scenius-reply::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-58%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #efb334;
  box-shadow: 0 0 0 3px rgba(239, 179, 52, 0.15);
}

.submissions-page .scenius-pre {
  white-space: pre-wrap;
}

/* Dark theme modals (submissions page only) */
.submissions-page .scenius-dark-panel {
  background: var(--surface-color, #192134);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.submissions-page .scenius-dark-panel .form-control {
  background: var(--background-color, #0a1020);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
}

.submissions-page .scenius-dark-panel .form-control::placeholder {
  color: var(--default-color, #aeb9cc);
}

.submissions-page .scenius-dark-panel .form-control:focus {
  background: var(--background-color, #0a1020);
  color: #fff;
  border-color: var(--accent-color, #38bdf8);
  box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.2);
}

.submissions-page .scenius-dark-panel .form-label,
.submissions-page .scenius-dark-panel .scenius-muted-copy {
  color: var(--default-color, #aeb9cc);
}

.submissions-page .scenius-btn-accent {
  background: var(--accent-color, #38bdf8);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
}

.submissions-page .scenius-btn-accent:hover,
.submissions-page .scenius-btn-accent:focus {
  background: color-mix(in srgb, var(--accent-color, #38bdf8), black 10%);
  color: #000;
}

.submissions-page .scenius-btn-logout {
  padding: 16px 21px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.submissions-page .scenius-btn-logout:hover,
.submissions-page .scenius-btn-logout:focus {
  background: rgba(239, 68, 68, 0.32);
  color: #fca5a5;
}

.submissions-page .modal-content {
  background: var(--surface-color, #192134);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
}

.submissions-page .modal-header,
.submissions-page .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.submissions-page .modal-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
}

.submissions-page .modal-body label {
  color: var(--default-color, #aeb9cc);
}

.submissions-page .modal-body input[readonly] {
  background: var(--background-color, #0a1020);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.submissions-page .modal-body textarea {
  background: var(--background-color, #0a1020);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  min-height: 180px;
}

.submissions-page .modal-body textarea:focus {
  background: var(--background-color, #0a1020);
  color: #fff;
  border-color: var(--accent-color, #38bdf8);
  box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.2);
}
