/*
Theme Name: TechnofyIT
Theme URI: https://www.technofyit.com.au
Author: Antigravity
Author URI: https://www.technofyit.com.au
Description: Custom WordPress theme for TechnofyIT.
Version: 2.0.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: technofyit
*/


:root {
  --navy: #080F1E;
  --navy2: #0D1B35;
  --blue: #1352CC;
  --blue2: #1A65E8;
  --cyan: #00C2D4;
  --cyan2: #00E5F5;
  --gold: #F59E0B;
  --light: #F0F4FC;
  --white: #FFFFFF;
  --grey: #64748B;
  --grey2: #94A3B8;
  --border: #E2E8F0;
  --success: #10B981;
  --container-width: 1200px;
  --container-gutter: 16px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

svg {
  display: block;
  max-width: none;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* SITE LOGOS — shared header + footer size */
.site-logo-link,
.nav-inner>.logo,
.nav-inner>.custom-logo-link,
.ft-brand .fl,
.ft-brand .custom-logo-link,
.ft-brand .footer-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(200px, 42vw);
  line-height: 0;
}

.site-logo-img,
.nav-inner .custom-logo-link img,
.nav-inner .custom-logo,
.ft-brand .custom-logo-link img,
.ft-brand .custom-logo,
.ft-brand .footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.logo span {
  color: var(--cyan);
}

/* ANNOUNCEMENT */
.ann {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: white;
  text-align: center;
  padding: 0;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.5;
}

.ann a {
  color: white;
  text-decoration: underline;
}

/* NAV */
nav,
#mainNav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1100;
  isolation: isolate;
  background: #fff;
  backdrop-filter: none;
  padding: 0;
  display: block;
  height: auto;
  transition: box-shadow .3s;
}

nav.scrolled,
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(8, 15, 30, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.site-logo-link,
.nav-inner>.logo,
.nav-inner>.custom-logo-link,
.nav-right {
  position: relative;
  z-index: 3;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: var(--navy);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links .current-menu-item>a,
.nav-links .current-menu-item>a:hover,
.nav-links .current-menu-ancestor>a,
.nav-links .current-menu-parent>a {
  color: var(--blue);
}

.mob-nav a.is-active,
.mob-nav .current-menu-item>a,
.mob-nav .current-menu-ancestor>a,
.mob-nav .current-menu-parent>a {
  color: var(--blue);
  font-weight: 600;
}

.ft-legal a.is-active {
  color: var(--cyan) !important;
  font-weight: 600;
}

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

.nav-cta.btn-primary {
  padding: .6rem 1.25rem;
  font-size: .875rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  z-index: 1090;
  padding: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mob-nav.open {
  display: block;
}

.mob-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob-nav li {
  list-style: none;
}

.mob-nav a {
  display: block;
  padding: .9rem 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

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

.mob-nav .mob-cta.btn-primary {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-top: 1rem;
  padding: .9rem 1.25rem;
  border: none;
  text-align: center;
}

.mob-nav .mob-cta.btn-primary:hover {
  color: var(--navy);
}

/* ── Header submenu (desktop dropdown) ── */
.nav-links>.menu-item-has-children {
  position: relative;
}

.nav-links>.menu-item-has-children>a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-links>.menu-item-has-children>a .nav-caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.nav-links>.menu-item-has-children:hover>a .nav-caret,
.nav-links>.menu-item-has-children:focus-within>a .nav-caret,
.nav-links>.menu-item-has-children.is-open>a .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-links .nav-sub-toggle {
  display: none;
}

.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  max-width: min(320px, calc(100vw - 2rem));
  margin: 0;
  padding: .55rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(8, 15, 30, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}

/* Invisible bridge so hover doesn't break between label and panel */
.nav-links .sub-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, #1352CC, #00C2D4);
}

.nav-links>.menu-item-has-children:hover>.sub-menu,
.nav-links>.menu-item-has-children:focus-within>.sub-menu,
.nav-links>.menu-item-has-children.is-open>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  width: 100%;
}

.nav-links .sub-menu a {
  display: block;
  padding: .72rem .9rem;
  border-radius: 8px;
  white-space: normal;
  line-height: 1.35;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
}

.nav-links .sub-menu a::after {
  display: none !important;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus-visible,
.nav-links .sub-menu .current-menu-item>a,
.nav-links .sub-menu a.is-active {
  background: var(--light);
  color: var(--blue);
}

/* ── Header submenu (mobile accordion) ── */
.mob-nav>.container>ul>li {
  position: relative;
}

.mob-nav .menu-item-has-children>a {
  padding-right: 3.25rem;
}

.mob-nav .nav-sub-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
  z-index: 2;
}

.mob-nav .nav-sub-toggle .nav-caret {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.mob-nav .menu-item-has-children.is-open>.nav-sub-toggle .nav-caret {
  transform: rotate(225deg);
}

.mob-nav .menu-item-has-children.is-open>.nav-sub-toggle {
  color: var(--blue);
}

.mob-nav .sub-menu {
  display: none;
  margin: 0 0 .35rem;
  padding: .15rem 0 .35rem .85rem;
  border-left: 2px solid rgba(19, 82, 204, .18);
  background: linear-gradient(180deg, rgba(240, 244, 252, .85), transparent);
}

.mob-nav .menu-item-has-children.is-open>.sub-menu {
  display: block;
}

.mob-nav .sub-menu a {
  padding: .7rem 0 .7rem .35rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--grey);
  border-bottom: 1px solid rgba(226, 232, 240, .7);
}

.mob-nav .sub-menu li:last-child>a {
  border-bottom: none;
}

.mob-nav .sub-menu a:hover,
.mob-nav .sub-menu .current-menu-item>a,
.mob-nav .sub-menu a.is-active {
  color: var(--blue);
}

/* HERO */
#home {
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-glow1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 212, .12) 0%, transparent 65%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 82, 204, .18) 0%, transparent 65%);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.25rem 0 1rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  box-sizing: border-box;
}

.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 194, 212, .1);
  border: 1px solid rgba(0, 194, 212, .25);
  border-radius: 100px;
  padding: 6px 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-eye::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}

.hero-text h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, .65);
  max-width: 500px;
  line-height: 1.8;
}

.hero-proof {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avs {
  display: flex;
}

.proof-avs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 2px solid var(--navy);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
}

.proof-avs span:first-child {
  margin-left: 0;
}

.proof-txt {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.proof-txt strong {
  color: white;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: none;
  box-shadow: 0 6px 22px rgba(0, 194, 212, .35);
}

.btn-primary .fa-solid,
.btn-ghost .fa-solid,
.btn-navy .fa-solid,
.btn-white .fa-solid,
.sub-btn .fa-solid,
.pkg-cta .fa-solid,
.svc-link .fa-solid,
.nav-cta .fa-solid,
.mob-cta .fa-solid,
.btn-home .fa-solid {
  font-size: .85em;
  line-height: 1;
  flex-shrink: 0;
}

.svc-ico .fa-solid {
  font-size: 1.15rem;
  color: inherit;
  line-height: 1;
}

.pos-card-icon .fa-solid {
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}

.c-ico .fa-solid {
  font-size: 1rem;
  color: var(--blue);
  line-height: 1;
}

.fc-ico .fa-solid {
  font-size: .8rem;
  line-height: 1;
}

.form-disc .fa-solid {
  margin-right: 6px;
  color: var(--cyan);
}

.pkg-check .fa-solid {
  font-size: .75rem;
  line-height: 1;
}

.pain-ico .fa-solid,
.inc-ico .fa-solid,
.other-ico .fa-solid,
.auto-group-ico .fa-solid,
.pkg-ico .fa-solid,
.p-circ .pe .fa-solid,
.act-ico .fa-solid,
.outcome-tick .fa-solid,
.sms-label .fa-solid {
  line-height: 1;
}

.pain-item .pain-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1rem;
}

.pain-item .pain-ico .fa-solid {
  font-size: 1rem;
  color: inherit;
}

.pain-card .pain-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: .9rem;
}

.pain-card .pain-ico .fa-solid {
  font-size: 1.1rem;
  color: inherit;
}

.inc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.inc-ico .fa-solid {
  font-size: 1.1rem;
  color: inherit;
}

.other-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: .75rem;
  font-size: 1rem;
}

.other-ico .fa-solid {
  font-size: 1.1rem;
  color: inherit;
}

.act-ico .fa-solid {
  font-size: .9rem;
  color: var(--cyan);
}

.outcome-tick .fa-solid {
  font-size: .7rem;
  color: var(--success);
}

.auto-group-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 194, 212, .15);
  border: 1px solid rgba(0, 194, 212, .28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .95rem;
}

.auto-group-ico .fa-solid {
  font-size: .95rem;
  color: inherit;
}

.pkg-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: .75rem;
  font-size: 1.2rem;
}

.pkg-ico .fa-solid {
  font-size: 1.2rem;
  color: inherit;
}

.sms-label .fa-solid {
  margin-right: 6px;
  font-size: .85em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1A65E8 0%, #00D8EB 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 194, 212, .45);
  color: #fff;
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: white;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 194, 212, .07);
}

/* DASHBOARD */
.hero-visual {
  position: relative;
}

.dashboard {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.dash-hdr {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dd.r {
  background: #FF5F56;
}

.dd.y {
  background: #FFBD2E;
}

.dd.g {
  background: #27C93F;
}

.dash-title {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  margin-left: auto;
  font-family: monospace;
}

.dash-body {
  padding: 1.4rem;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.2rem;
}

.kpi {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: .85rem;
  text-align: center;
}

.kpi-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.kpi-val.up {
  color: var(--success);
}

.kpi-val.cy {
  color: var(--cyan);
}

.kpi-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
}

.dash-acts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.act {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 9px;
  padding: .7rem .9rem;
  transition: background .2s;
}

.act:hover {
  background: rgba(0, 194, 212, .06);
}

.act-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 194, 212, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.act-txt strong {
  display: block;
  color: white;
  font-size: .8rem;
  font-weight: 500;
}

.act-txt span {
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
}

.act-badge {
  margin-left: auto;
  font-size: .65rem;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}

.bg {
  background: rgba(16, 185, 129, .15);
  color: var(--success);
}

.bc {
  background: rgba(0, 194, 212, .15);
  color: var(--cyan);
}

.bo {
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
}

/* LOGO BAR */
#logos {
  background: linear-gradient(180deg, #F0F4FC 0%, #EEF3FA 100%);
  border-top: 1px solid rgba(226, 232, 240, .9);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  padding: 2.75rem 0;
}

.logos-inner {
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.logos-lbl {
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: #000;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
}

.logos-slider {
  width: 100%;
}

.logos-slider-viewport {
  width: 100%;
}

.logos-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.logos-row>.lpill {
  margin: 0 .375rem .75rem;
}

/* Desktop: hide duplicated marquee set */
.logos-row>.lpill[data-logos-clone] {
  display: none;
}

.lpill {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 14px;
  padding: .55rem .95rem .55rem .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(8, 15, 30, .04);
  transition: border-color .2s, color .2s, box-shadow .2s, transform .2s;
  line-height: 1.2;
  flex-shrink: 0;
}

.lpill:hover {
  border-color: rgba(0, 194, 212, .35);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(19, 82, 204, .1);
  transform: translateY(-2px);
}

.lpill-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #EBF3FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background .2s, color .2s;
}

.lpill-ico .fa-solid {
  font-size: .85rem;
  line-height: 1;
  color: inherit;
}

.lpill:hover .lpill-ico {
  background: rgba(0, 194, 212, .12);
  color: var(--cyan);
}

.lpill-txt {
  white-space: nowrap;
}

@media(max-width:900px) {
  .logos-slider-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .logos-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: -webkit-max-content;
    width: max-content;
    -webkit-animation: logos-marquee 28s linear infinite;
    animation: logos-marquee 28s linear infinite;
  }

  .logos-row>.lpill {
    margin: 0 .325rem 0;
  }

  .logos-row>.lpill[data-logos-clone] {
    display: inline-flex;
  }

  .lpill {
    padding: .5rem .85rem .5rem .45rem;
    font-size: .78rem;
  }
}

@media(max-width:900px) and (hover:hover) {
  .logos-slider:hover .logos-row {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}

@-webkit-keyframes logos-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logos-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@media(max-width:900px) and (prefers-reduced-motion:reduce) {
  .logos-row {
    -webkit-animation: none;
    animation: none;
  }

  .logos-slider-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* SHARED */
section {
  padding: 6rem 0;
}

.si {
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.s-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.s-eye::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.s-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.s-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-text h1 em,
.pg-hero h1 em,
.f-content .s-title em,
.res-hdr .s-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-inner h2 em,
.pg-cta-inner h2 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #00C2D4;
  color: #00C2D4;
}

.stat-val span,
.pg-stat-val span {
  color: #00C2D4;
}

.logo span {
  color: #00C2D4;
}

.s-sub {
  margin-top: .9rem;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
}

.btn-navy {
  background: linear-gradient(135deg, #080F1E 0%, #1352CC 100%);
  color: white;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-navy:hover {
  background: linear-gradient(135deg, #0D1B35 0%, #1A65E8 100%);
  transform: translateY(-1px);
}

/* POSITIONING */
#positioning {
  background: white;
}

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pos-text p {
  margin-top: 1.1rem;
  color: var(--grey);
  font-size: .975rem;
  line-height: 1.85;
}

.pos-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pos-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pos-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(19, 82, 204, .08);
  transform: translateY(-3px);
}

.pos-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #EBF3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.pos-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.pos-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.pci {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(19, 82, 204, .1), rgba(0, 194, 212, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}


/* SERVICES */
#services {
  background: linear-gradient(180deg, #F7F9FC 0%, #EEF3FA 40%, #F7F9FC 100%);
}

.svc-hdr {
  max-width: 720px;
  margin: 0 0 3.25rem;
}

.svc-hdr .s-sub {
  margin-top: .85rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.55rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 15, 30, .04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 194, 212, .35);
  box-shadow: 0 16px 40px rgba(19, 82, 204, .1);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card--featured {
  border-color: rgba(0, 194, 212, .28);
  grid-column: 1 / -1;
}

.svc-card--featured .svc-link {
  color: var(--blue);
}

@media(min-width:901px) {
  .svc-card--featured {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "ico title link"
      "ico text link";
    column-gap: 1.35rem;
    row-gap: .35rem;
    align-items: center;
    padding: 1.85rem 1.85rem 1.7rem;
  }

  .svc-card--featured .svc-ico {
    grid-area: ico;
    margin-bottom: 0;
  }

  .svc-card--featured h3 {
    grid-area: title;
    margin: 0;
  }

  .svc-card--featured p {
    grid-area: text;
    margin: 0;
    max-width: 62ch;
  }

  .svc-card--featured .svc-link {
    grid-area: link;
    margin-top: 0;
    justify-self: end;
    align-self: center;
    white-space: nowrap;
  }
}

@media(max-width:900px) and (min-width:769px) {
  .svc-card--featured {
    grid-column: 1 / -1;
  }
}

.svc-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
  color: var(--blue);
  transition: background .25s, border-color .25s, color .25s;
}

.svc-ico .fa-solid {
  font-size: 1.15rem;
  color: inherit;
  line-height: 1;
}

.svc-card:hover .svc-ico {
  background: rgba(0, 194, 212, .12);
  border-color: rgba(0, 194, 212, .28);
  color: var(--cyan);
}

.svc-card h3 {
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 .65rem;
  line-height: 1.35;
  letter-spacing: -.015em;
}

.svc-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

.svc-link {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 700;
  transition: gap .2s, color .2s;
}

.svc-link:hover {
  gap: 10px;
  color: var(--cyan);
}

/* FOUNDER */
#founder {
  background: var(--navy);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.f-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.f-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  border: 3px solid rgba(255, 255, 255, .15);
}

.f-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}

.f-title {
  font-size: .82rem;
  color: var(--cyan);
  margin-top: 4px;
}

.f-bio {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .8rem;
  line-height: 1.7;
}

.f-creds {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
}

.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.f-content .s-eye {
  color: var(--cyan);
}

.f-content .s-eye::before {
  background: var(--cyan);
}

.f-content .s-title {
  color: white;
}

.f-content .s-sub {
  color: rgba(255, 255, 255, .6);
  max-width: 100%;
}

.f-content p {
  color: rgba(255, 255, 255, .6);
  font-size: .975rem;
  line-height: 1.85;
  margin-top: 1rem;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.exp-tag {
  background: rgba(0, 194, 212, .1);
  border: 1px solid rgba(0, 194, 212, .2);
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.f-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* WHY */
#why {
  background: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 55%, #FFFFFF 100%);
}

.why-hdr {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.25rem;
}

.why-hdr .s-eye {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.why-hdr .s-title {
  margin: 0 auto;
}

.why-hdr .s-sub {
  margin: .85rem auto 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  padding: 1.75rem 1.65rem 1.7rem;
  box-shadow: 0 10px 28px rgba(8, 15, 30, .04);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(0, 194, 212, .35);
  box-shadow: 0 16px 40px rgba(19, 82, 204, .1);
  transform: translateY(-3px);
}

.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.why-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background .25s, border-color .25s, color .25s;
}

.why-ico .fa-solid {
  font-size: 1.15rem;
  line-height: 1;
  color: inherit;
}

.why-card:hover .why-ico {
  background: rgba(0, 194, 212, .12);
  border-color: rgba(0, 194, 212, .28);
  color: var(--cyan);
}

.why-n {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  color: rgba(8, 15, 30, .09);
  line-height: 1;
  letter-spacing: -.03em;
  user-select: none;
  pointer-events: none;
}

.why-card h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .65rem;
  line-height: 1.35;
  letter-spacing: -.015em;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* PROCESS */
#process,
#how {
  background: linear-gradient(180deg, #F3F6FB 0%, #EEF3FA 100%);
}

.proc-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.proc-hdr .s-eye {
  justify-content: center;
}

.proc-hdr .s-title {
  margin: 0 auto;
}

.proc-hdr .s-sub {
  margin: .8rem auto 0;
  text-align: center;
  max-width: 540px;
}

.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.proc-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 82, 204, .35) 0%, rgba(0, 194, 212, .55) 100%);
  z-index: 0;
  border-radius: 2px;
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circ {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(19, 82, 204, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  box-shadow: 0 8px 24px rgba(19, 82, 204, .08);
}

.step-circ .sn {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border-radius: 100px;
  background: linear-gradient(180deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(19, 82, 204, .25);
}

.step-circ .se {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step-circ .se .fa-solid {
  font-size: 1.35rem;
  color: #1352CC;
  transition: color .25s;
}

.proc-step:hover .step-circ {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(0, 194, 212, .4);
  box-shadow: 0 14px 36px rgba(19, 82, 204, .16);
}

.proc-step:hover .step-circ .se .fa-solid {
  color: #00C2D4;
}

.step-body {
  max-width: 220px;
}

.proc-step h3,
.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}

.proc-step p,
.step-body p {
  font-size: .84rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.proc-guar {
  margin-top: 3rem;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(19, 82, 204, .1);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  box-shadow: 0 10px 32px rgba(8, 15, 30, .05);
  position: relative;
  overflow: hidden;
}

.proc-guar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1352CC, #00C2D4);
}

.proc-guar-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF3FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1352CC;
}

.proc-guar-ico .fa-solid {
  font-size: 1.1rem;
  color: #1352CC;
}

.proc-guar p {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.proc-guar p strong {
  color: var(--navy);
}

/* RESULTS */
#results {
  background: var(--navy);
}

.res-hdr {
  text-align: center;
  margin-bottom: 4rem;
}

.res-hdr .s-eye {
  color: var(--cyan);
  justify-content: center;
}

.res-hdr .s-eye::before {
  background: var(--cyan);
}

.res-hdr .s-title {
  color: white;
  margin: 0 auto;
}

.res-hdr .s-sub {
  color: rgba(255, 255, 255, .5);
  margin: .8rem auto 0;
  text-align: center;
}

.res-slider {
  --res-gap: 1.5rem;
  --res-per: 3;
  position: relative;
}

.res-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.res-slider-track {
  display: flex;
  gap: var(--res-gap);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.res-card.is-clone {
  pointer-events: none;
}

.res-card {
  flex: 0 0 calc((100% - (var(--res-per) - 1) * var(--res-gap)) / var(--res-per));
  min-width: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 2rem;
  transition: background .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}

.res-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(0, 194, 212, .25);
}

.res-stars {
  color: #fff;
  font-size: clamp(.8rem, 1.5vw, .95rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.res-quote {
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  font-style: italic;
  margin: .8rem 0 0;
  flex: 1;
}

.res-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.res-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 194, 212, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
  overflow: hidden;
}

.res-av.has-img {
  background: transparent;
  padding: 0;
}

.res-av .res-av-img,
.res-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
    border-radius: 50%;
    border: 1px solid #1352cc;
    padding: 7px;
}

.res-name {
  font-size: .85rem;
  font-weight: 600;
  color: white;
}

.res-role {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
}

.res-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.res-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, opacity .2s, transform .2s;
}

.res-slider-btn:hover:not(:disabled) {
  background: rgba(0, 194, 212, .15);
  border-color: rgba(0, 194, 212, .45);
  color: var(--cyan);
}

.res-slider-btn:disabled {
  opacity: .35;
  cursor: default;
}

.res-slider-btn .fa-solid {
  font-size: .9rem;
  line-height: 1;
}

.res-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}

.res-slider-dot.is-active {
  background: var(--cyan);
  width: 22px;
  border-radius: 100px;
}

/* FAQ */
#faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-text {
  position: sticky;
  top: 96px;
  align-self: start;
}

.faq-text .s-sub {
  max-width: 100%;
}

.faq-text p {
  margin-top: 1rem;
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.85;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid .faq-list {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: color .2s;
  gap: 1rem;
  user-select: none;
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.4;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transition: background .2s, color .2s;
}

.faq-ico::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  content: "\f067";
  font-size: .7rem;
  line-height: 1;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.faq-item.open .faq-q {
  color: var(--blue);
}

.faq-item.open .faq-ico {
  background: var(--blue);
  transform: none;
}

.faq-item.open .faq-ico::before {
  content: "\f068";
  color: #fff;
}

.faq-a {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 480px;
  padding-bottom: 1.2rem;
}

/* CTA BAND */
#cta-band {
  background: linear-gradient(115deg, #050c1c 0%, #0a1a3a 38%, #1352CC 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  width: min(700px, calc(100% - 32px));
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.cta-inner h2 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #00C2D4;
  color: #00C2D4;
}

.cta-inner p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.cta-acts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-acts .btn-primary {
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 194, 212, .4);
}

.cta-acts .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}

.cta-acts .btn-ghost:hover {
  border-color: #00C2D4;
  background: rgba(0, 194, 212, .1);
  color: #fff;
}

.btn-white {
  background: white;
  color: var(--navy);
  padding: .9rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 194, 212, .35);
}

/* CONTACT */
#contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.c-left .s-sub {
  max-width: 100%;
}

.c-left p {
  margin-top: 1rem;
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.85;
}

.c-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.c-det {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--navy);
}

.c-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--grey);
}

.t-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: .9rem;
}

.form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 8px 40px rgba(8, 15, 30, .06);
}

.form-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.form-sub {
  font-size: .85rem;
  color: var(--grey);
  margin-bottom: 1.8rem;
}

.fg {
  margin-bottom: 1.1rem;
}

.fg label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: white;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(19, 82, 204, .08);
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

.fg select,
.form-wrap .wpcf7-form .fg select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.75rem;
  background-image: none;
  cursor: pointer;
}

.fg .wpcf7-form-control-wrap:has(> select),
.fg:has(> select):not(:has(.wpcf7-form-control-wrap)) {
  position: relative;
  display: block;
}

.fg .wpcf7-form-control-wrap:has(> select)::after,
.fg:has(> select):not(:has(.wpcf7-form-control-wrap))::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-size: .72rem;
  line-height: 1;
  color: var(--navy);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sub-btn {
  width: auto;
  max-width: 100%;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: .5rem;
  box-shadow: 0 6px 20px rgba(0, 194, 212, .35);
}

.sub-btn:hover {
  background: linear-gradient(135deg, #1A65E8 0%, #00D8EB 100%);
  transform: translateY(-1px);
}

.form-disc {
  font-size: .74rem;
  color: var(--grey2);
  text-align: center;
  margin-top: .8rem;
}

/* Contact Form 7 — match existing contact form layout */
.form-wrap .wpcf7 {
  margin: 0;
}

.form-wrap .wpcf7-form {
  margin: 0;
}

.form-wrap .wpcf7-form .fg p br {
  display: none !important;
}

.form-wrap .wpcf7-form .form-row {
  margin-bottom: 0;
}

.form-wrap .wpcf7-form .fg .wpcf7-form-control-wrap {
  display: block;
}

.form-wrap .wpcf7-form .fg input,
.form-wrap .wpcf7-form .fg textarea,
.form-wrap .wpcf7-form .fg select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: white;
  outline: none;
  box-sizing: border-box;
}

.form-wrap .wpcf7-form .fg input:focus,
.form-wrap .wpcf7-form .fg textarea:focus,
.form-wrap .wpcf7-form .fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(19, 82, 204, .08);
}

.form-wrap .wpcf7-form .fg textarea {
  resize: vertical;
  min-height: 110px;
}

.form-wrap .wpcf7-form input.wpcf7-submit.sub-btn,
.form-wrap .wpcf7-form .sub-btn,
.form-wrap .wpcf7-form button.wpcf7-submit.sub-btn {
  width: 100%;
  max-width: 100%;
  margin-top: .5rem;
  padding: 1rem 1.75rem;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  box-shadow: 0 6px 20px rgba(0, 194, 212, .35);
  transition: background .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-wrap .wpcf7-form .sub-btn .fa-solid,
.form-wrap .wpcf7-form button.wpcf7-submit .fa-solid {
  font-size: .9em;
  line-height: 1;
}

.form-wrap .wpcf7-form input.wpcf7-submit.sub-btn:hover,
.form-wrap .wpcf7-form .sub-btn:hover,
.form-wrap .wpcf7-form button.wpcf7-submit.sub-btn:hover {
  background: linear-gradient(135deg, #1A65E8 0%, #00D8EB 100%);
  transform: translateY(-1px);
}

.form-wrap .wpcf7-not-valid-tip {
  font-size: .78rem;
  color: #dc2626;
  margin-top: .35rem;
}

.form-wrap .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-radius: 9px;
  font-size: .9rem;
  text-align: center;
}

.form-wrap .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .08);
  color: #047857;
}

.form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.form-wrap .wpcf7 form.failed .wpcf7-response-output {
  border-color: rgba(220, 38, 38, .3);
  background: rgba(220, 38, 38, .06);
  color: #b91c1c;
}

.form-wrap .wpcf7-spinner {
  margin-left: 8px;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.ft-top {
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-sizing: border-box;
}

.ft-brand .fl,
.ft-brand .custom-logo-link,
.ft-brand .footer-logo-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  gap: 10px;
  margin-bottom: 1rem;
}

.ft-brand .fl span {
  color: var(--cyan);
}

.ft-brand p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  max-width: 350px;
}

.ft-brand .fc {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.ft-brand .fc a,
.ft-brand .fc .fc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 0;
  transition: color .2s;
  line-height: 1.45;
}

.ft-brand .fc a:hover,
.ft-brand .fc .fc-item:hover {
  color: var(--cyan);
}

.ft-brand .fc .fc-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0, 194, 212, .1);
  border: 1px solid rgba(0, 194, 212, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.ft-brand .fc .fc-ico svg {
  width: 14px;
  height: 14px;
  display: block;
}

.ft-brand .fc a:hover .fc-ico {
  background: rgba(0, 194, 212, .18);
  border-color: rgba(0, 194, 212, .35);
}

.ft-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  background-color: transparent;
  margin-top: 1.35rem;
}

.ft-social-link {
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  flex: 0 0 35px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
  overflow: hidden;
  box-sizing: border-box;
}

.ft-social-link:hover {
  color: var(--cyan);
  background: rgba(0, 194, 212, .12);
  border-color: rgba(0, 194, 212, .35);
  transform: translateY(-2px);
}

.ft-social-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ft-social-ico svg {
  display: block;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.ft-col .ft-col-title,
.ft-col h5 {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ft-col ul a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.ft-col ul a:hover {
  color: var(--cyan);
}

.ft-col ul .current-menu-item>a,
.ft-col ul .current_page_item>a,
.ft-col ul .current-menu-ancestor>a,
.ft-col ul a.is-active {
  color: var(--cyan);
  font-weight: 600;
}

.ft-bot {
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-sizing: border-box;
}

.ft-bot p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
}

.ft-bot a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.ft-bot a:hover {
  color: var(--cyan);
}

.ft-legal {
  margin: 0;
}

.ft-legal a.is-active {
  color: var(--cyan) !important;
  font-weight: 600;
}

/* BACK TO TOP — sticky bottom-right */
.back-to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1050;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 6px 20px rgba(0, 194, 212, .38), 0 3px 10px rgba(8, 15, 30, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.92);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(135deg, #1A65E8 0%, #00D8EB 100%);
  box-shadow: 0 10px 28px rgba(0, 194, 212, .48), 0 4px 12px rgba(8, 15, 30, .18);
  transform: translateY(-2px) scale(1);
  color: #fff;
  outline: none;
}

.back-to-top:focus-visible {
  box-shadow: 0 10px 28px rgba(0, 194, 212, .48), 0 0 0 3px rgba(0, 194, 212, .35);
}

.back-to-top-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.back-to-top .fa-solid {
  font-size: .85rem;
  line-height: 1;
}

@media(max-width:768px) {
  .back-to-top {
    right: .85rem;
    bottom: .85rem;
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .back-to-top .fa-solid {
    font-size: .8rem;
  }
}

@media(prefers-reduced-motion:reduce) {
  .back-to-top {
    transition: opacity .15s ease, visibility .15s ease;
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    transform: none;
  }
}

/* Tradies booking — Microsoft Bookings-style panel */
.tradie-book-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
}

.tradie-book-card-top {
  background: var(--navy);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tradie-book-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.tradie-book-card-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  margin-left: auto;
  font-family: ui-monospace, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(420px, 55vw);
}

.tradie-book-ms {
  background: #F3F2F1;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.tradie-book-ms-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tradie-book-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.tradie-book-logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
}

.tradie-book-logo-mark {
  color: var(--cyan);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -.04em;
}

.tradie-book-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.tradie-book-logo-text span {
  color: var(--cyan);
}

.tradie-book-ms-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: #242424;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 auto 1.75rem;
  max-width: 16ch;
}

.tradie-book-service {
  display: block;
  text-align: left;
  background: #fff;
  border: 1px solid #E1DFDD;
  border-radius: 8px;
  padding: 1.15rem 1.2rem 1rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  color: inherit;
}

.tradie-book-service:hover {
  border-color: #C7E0F4;
  box-shadow: 0 8px 24px rgba(19, 82, 204, .12);
  transform: translateY(-1px);
}

.tradie-book-service-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DEECF9;
  color: #0078D4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  line-height: 1;
}

.tradie-book-service-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #242424;
  padding-right: 2rem;
  margin-bottom: .55rem;
  line-height: 1.35;
}

.tradie-book-service-desc {
  display: block;
  font-size: .875rem;
  color: #605E5C;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.tradie-book-service-desc em {
  font-style: normal;
  color: var(--blue);
}

.tradie-book-service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #605E5C;
}

.tradie-book-service-globe {
  color: #8A8886;
  font-size: .85rem;
  line-height: 1;
}

.tradie-book-ms-hint {
  margin: 1.15rem 0 0;
  font-size: .8rem;
  color: #8A8886;
}

@media(max-width:768px) {
  .tradie-book-ms {
    padding: 1.75rem 1rem 1.5rem;
  }

  .tradie-book-ms-title {
    max-width: none;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .tradie-book-service {
    padding: 1rem 1rem .9rem;
  }

  .tradie-book-card-label {
    max-width: 48vw;
  }
}

@media(max-width:480px) {
  .tradie-book-card-top {
    padding: .75rem 1rem;
  }

  .tradie-book-logo {
    max-height: 40px;
  }
}


/* ── SERVICE PAGE HERO ── */
.pg-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 0 6rem;
}

.pg-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.pg-hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 212, .14) 0%, transparent 65%);
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.pg-hero-glow2 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 82, 204, .16) 0%, transparent 65%);
  bottom: -80px;
  left: 0;
  pointer-events: none;
}

.pg-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), calc(100% - (var(--container-gutter) * 2)));
  max-width: var(--container-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.pg-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 194, 212, .1);
  border: 1px solid rgba(0, 194, 212, .25);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.pg-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.pg-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pg-hero-sub {
  margin-top: 1.25rem;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 640px;
}

.pg-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service pain / challenge */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pain-intro {
  position: sticky;
  top: 96px;
  align-self: start;
}

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

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.pain-item h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.pain-item p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Tradies pain cards */
.pain-hdr {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pain-hdr .s-eye {
  justify-content: center;
}

.pain-hdr .s-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#pain .pain-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pain-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 28px rgba(0, 194, 212, .08);
  transform: translateY(-3px);
}

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

.pain-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.7;
}

/* Included / feature cards */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.inc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.inc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(19, 82, 204, .08);
  transform: translateY(-3px);
}

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

.inc-card p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.7;
}

/* Scenario */
.scenario-wrap {
  position: relative;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.scenario-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.scenario-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.scenario-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.scenario-inner h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: .75rem;
}

.scenario-inner p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
}

.scenario-outcomes {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.outcome-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: .85rem 1rem;
}

.outcome-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.outcome-item p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
  margin: 0;
}

/* Service process track */
/* Legacy process-track aliases → homepage proc-track */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 82, 204, .35) 0%, rgba(0, 194, 212, .55) 100%);
  z-index: 0;
  border-radius: 2px;
}

.p-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-circ {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(19, 82, 204, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(19, 82, 204, .08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.p-circ .pn {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border-radius: 100px;
  background: linear-gradient(180deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(19, 82, 204, .25);
}

.p-circ .pe {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.p-circ .pe .fa-solid {
  font-size: 1.35rem;
  color: #1352CC;
}

.p-step:hover .p-circ {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 212, .4);
  box-shadow: 0 14px 36px rgba(19, 82, 204, .16);
  background: #fff;
}

.p-step:hover .p-circ .pe .fa-solid {
  color: #00C2D4;
}

.p-step:hover .p-circ .pn {
  color: #fff;
}

.p-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}

.p-step p {
  font-size: .84rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Page CTA */
.pg-cta {
  background: linear-gradient(115deg, #050c1c 0%, #0a1a3a 38%, #1352CC 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pg-cta-inner {
  width: min(700px, calc(100% - 32px));
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.pg-cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.pg-cta-inner h2 em {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #00C2D4;
  color: #00C2D4;
}

.pg-cta-inner p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.pg-cta-acts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pg-cta-acts .btn-primary,
.pg-cta-acts .btn-white {
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 194, 212, .4);
}

.pg-cta-acts .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}

.pg-cta-acts .btn-ghost:hover {
  border-color: #00C2D4;
  background: rgba(0, 194, 212, .1);
  color: #fff;
}

/* Other services */
.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.other-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.other-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(19, 82, 204, .08);
  transform: translateY(-3px);
  color: inherit;
}

.other-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.other-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.other-card p {
  font-size: .8rem;
  color: var(--grey);
  line-height: 1.5;
}

.other-card:hover h3 {
  color: var(--blue);
}

/* ── TRADIES PAGE ── */
.sms-stack {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.sms-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  transition: background .2s;
}

.sms-card.outgoing {
  background: rgba(0, 194, 212, .08);
  border-color: rgba(0, 194, 212, .2);
}

.sms-card.success {
  background: rgba(16, 185, 129, .08);
  border-color: rgba(16, 185, 129, .2);
}

.sms-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .45rem;
}

.sms-label.cy {
  color: var(--cyan);
}

.sms-label.gr {
  color: var(--success);
}

.sms-msg {
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.sms-time {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  margin-top: .5rem;
}

.sms-time.cy {
  color: var(--cyan);
}

.sms-time.gr {
  color: var(--success);
}

#pain {
  background: white;
}

#automations {
  background: var(--light);
}

.auto-hdr {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.auto-hdr-right {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.8;
}

.auto-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.auto-group {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.auto-group-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 1.25rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.auto-group-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: white;
}

.auto-list {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.auto-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.auto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 6px;
  flex-shrink: 0;
}

.auto-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}

.auto-sub {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.5;
  margin-top: 2px;
}

#packages {
  background: white;
}

.pkg-hdr {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pkg-hdr .s-eye {
  justify-content: center;
}

.pkg-hdr .s-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pkg {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}

.pkg:hover {
  box-shadow: 0 12px 40px rgba(8, 15, 30, .1);
  transform: translateY(-4px);
}

.pkg.featured {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(0, 194, 212, .12);
}

.pkg-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--cyan);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .03em;
  text-transform: uppercase;
  z-index: 1;
}

.pkg-top {
  padding: 1.75rem 1.5rem 1.25rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.pkg.featured .pkg-top {
  background: linear-gradient(135deg, rgba(0, 194, 212, .08), rgba(19, 82, 204, .06));
}

.pkg-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}

.pkg-tagline {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: .9rem;
}

.pkg-count {
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
}

.pkg-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-inc-lbl {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey2);
  margin-bottom: 1rem;
}

.pkg-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: .7rem;
}

.pkg-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--navy);
  color: white;
  padding: .85rem 1.25rem;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s;
}

.pkg-cta:hover {
  background: var(--blue);
}

.pkg.featured .pkg-cta {
  background: var(--cyan);
  color: var(--navy);
}

.pkg.featured .pkg-cta:hover {
  background: var(--cyan2);
}

.pkg-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .9rem;
  color: var(--grey);
}

.pkg-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

#about {
  background: white;
}

#about .f-card {
  background: var(--navy);
  border-color: rgba(255, 255, 255, .1);
}

#about .f-content .btn-primary {
  color: var(--navy);
}

#about .f-content p {
  color: var(--grey);
  font-size: .975rem;
  line-height: 1.85;
  margin-top: 1rem;
}

#about .f-content p strong {
  color: var(--navy);
}

#about .exp-tag {
  background: rgba(19, 82, 204, .08);
  border-color: rgba(19, 82, 204, .15);
  color: var(--blue);
}

#about .s-eye {
  color: #000;
}

#about .s-eye::before {
  background: #000;
}

#book .s-eye {
  color: var(--cyan);
}

#book .s-eye::before {
  background: var(--cyan);
}

#about .s-title {
  color: var(--navy);
}


/* HERO PARTICLES */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:1100px) {
  .nav-links {
    gap: 1rem;
  }

  .pos-grid,
  .founder-grid,
  .contact-grid {
    gap: 3rem;
  }

  .ft-top {
    gap: 2rem;
  }
}

@media(max-width:1024px) {

  .svc-grid,
  .included-grid,
  .pkg-grid,
  .auto-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .svc-card {
    padding: 1.5rem 1.35rem;
  }

  .svc-hdr {
    margin-bottom: 2.5rem;
  }

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

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  /* Process: simple stacked boxes (no slider) */
  .proc-track,
  .process-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .proc-track::before,
  .proc-track::after,
  .process-track::before,
  .process-track::after {
    display: none;
  }

  .proc-step,
  .p-step {
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(19, 82, 204, .1);
    border-radius: 16px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 8px 24px rgba(8, 15, 30, .05);
  }

  .step-circ,
  .p-circ {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
  }

  .step-circ .se .fa-solid,
  .p-circ .pe .fa-solid {
    font-size: 1.1rem;
  }

  .step-body {
    max-width: none;
    text-align: center;
  }

  .proc-guar {
    margin-top: 1.75rem;
  }
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 1.25rem 0 1rem;
  }

  .hero-visual {
    display: none;
  }

  .pos-grid,
  .founder-grid,
  .faq-grid,
  .contact-grid,
  .pain-grid,
  .scenario-inner,
  .auto-hdr {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pain-intro,
  .faq-text {
    position: static;
    top: auto;
  }

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

  .res-slider {
    --res-per: 2;
    --res-gap: 1.15rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .why-card {
    padding: 1.5rem 1.35rem;
  }

  .why-hdr {
    margin-bottom: 2.5rem;
  }

  .pg-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .f-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media(max-width:768px) {
  .ann {
    font-size: .75rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-right {
    gap: .5rem;
  }

  .nav-inner {
    height: 60px;
  }

  .mob-nav {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  section {
    padding: 3.5rem 0;
  }

  .hero-inner {
    padding: 1rem 0 .85rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .pg-hero-actions .btn-primary,
  .pg-hero-actions .btn-ghost,
  .cta-acts .btn-primary,
  .cta-acts .btn-white,
  .cta-acts .btn-ghost,
  .pg-cta-acts .btn-primary,
  .pg-cta-acts .btn-white,
  .pg-cta-acts .btn-ghost,
  .f-cta .btn-primary,
  .f-cta .btn-navy,
  .f-cta .btn-ghost {
    width: auto;
    max-width: 100%;
  }

  .hero-actions,
  .pg-hero-actions,
  .cta-acts,
  .pg-cta-acts,
  .f-cta {
    align-items: flex-start;
  }

  .svc-grid,
  .pos-cards,
  .why-grid,
  .included-grid,
  #pain .pain-grid,
  .pkg-grid,
  .auto-groups,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    gap: 1rem;
  }

  .why-card {
    padding: 1.4rem 1.25rem;
  }

  .why-n {
    font-size: 2.35rem;
  }

  .res-slider {
    --res-per: 1;
    --res-gap: 1rem;
  }

  .res-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ft-social {
    justify-content: flex-start;
  }

  .ft-bot {
    flex-direction: column;
    text-align: center;
  }

  .ft-bot .ft-legal {
    order: 1;
  }

  .ft-bot .ft-copy {
    order: 2;
  }

  .proc-track,
  .process-track {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .proc-step,
  .p-step {
    padding: 1.25rem 1.15rem;
  }

  .proc-guar {
    padding: 1.2rem 1.2rem 1.2rem 1.35rem;
    align-items: flex-start;
  }

  .proc-guar-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .cta-acts,
  .pg-cta-acts {
    flex-direction: column;
    align-items: center;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  #cta-band,
  .pg-cta {
    padding: 3.5rem 0;
  }

  #book {
    padding: 3.5rem 0 !important;
  }

  .logo {
    font-size: 1.2rem;
  }

  .site-logo-link,
  .nav-inner>.logo,
  .nav-inner>.custom-logo-link,
  .ft-brand .fl,
  .ft-brand .custom-logo-link,
  .ft-brand .footer-logo-link {
    max-width: min(160px, 48vw);
  }

  .site-logo-img,
  .nav-inner .custom-logo-link img,
  .nav-inner .custom-logo,
  .ft-brand .custom-logo-link img,
  .ft-brand .custom-logo,
  .ft-brand .footer-logo {
    max-height: 36px;
  }
}

@media(max-width:480px) {
  .ann {
    display: none;
  }

  .mob-nav {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  .nav-inner {
    height: 60px;
  }

  .site-logo-link,
  .nav-inner>.logo,
  .nav-inner>.custom-logo-link,
  .ft-brand .fl,
  .ft-brand .custom-logo-link,
  .ft-brand .footer-logo-link {
    max-width: min(140px, 52vw);
  }

  .site-logo-img,
  .nav-inner .custom-logo-link img,
  .nav-inner .custom-logo,
  .ft-brand .custom-logo-link img,
  .ft-brand .custom-logo,
  .ft-brand .footer-logo {
    max-height: 32px;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .pg-hero h1 {
    font-size: 1.75rem;
  }

  .s-title {
    font-size: 1.65rem;
  }

  .btn-primary,
  .btn-ghost,
  .btn-navy,
  .btn-white {
    padding: .8rem 1.25rem;
    font-size: .9rem;
  }

  .scenario-wrap {
    border-radius: 14px;
    padding: 1.35rem;
  }

  .pkg-popular {
    top: 10px;
    right: 10px;
  }
}

@media(max-width:360px) {
  section {
    padding: 3rem 0;
  }
}

/* ── BLOG ── */
.blog-hero {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.blog-hero--single {
  padding-bottom: 3rem;
}

.blog-hero .pg-hero-sub {
  max-width: 680px;
}

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.blog-section {
  background: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 55%, #F7F9FC 100%);
  padding: 4rem 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.blog-grid--related {
  margin-top: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 15, 30, .04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 194, 212, .35);
  box-shadow: 0 16px 40px rgba(19, 82, 204, .1);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #EBF3FF 0%, #EEF3FA 100%);
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  opacity: .55;
}

.blog-card-placeholder .fa-solid {
  font-size: 1.75rem;
}

.blog-card-body {
  padding: 1.35rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--grey2);
  margin-bottom: .7rem;
}

.blog-card-date {
  color: var(--grey2);
}

.blog-card-title {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: #000;
  line-height: 1.35;
  letter-spacing: -.015em;
  margin: 0 0 .65rem;
}

.blog-card-title a {
  color: inherit;
  transition: color .2s;
}

.blog-card-title a:hover {
  color: var(--blue);
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 700;
  transition: gap .2s, color .2s;
}

.blog-card-link:hover {
  gap: 10px;
  color: var(--cyan);
}

.blog-card-link .fa-solid {
  font-size: .85em;
}

.blog-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links,
.blog-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, .95);
  background: #fff;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}

.blog-pagination .page-numbers:hover {
  border-color: rgba(0, 194, 212, .35);
  color: var(--blue);
}

.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  border-color: transparent;
  color: #fff;
}

.blog-pagination .prev .fa-solid,
.blog-pagination .next .fa-solid {
  font-size: .8rem;
}

.blog-empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 0 1rem;
}

.blog-empty .s-eye {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-empty .s-title {
  margin: 0 auto;
}

.blog-empty .s-sub {
  margin: .85rem auto 0;
}

.blog-empty-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.blog-single-section {
  background: linear-gradient(180deg, #F7F9FC 0%, #EEF3FA 35%, #F7F9FC 100%);
  padding: 3.25rem 0 3.5rem;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.blog-single-layout:not(.has-toc) {
  grid-template-columns: 1fr;
}

.blog-single-layout:not(.has-toc) .blog-toc {
  display: none;
}

.blog-toc {
  min-width: 0;
  position: relative;
  align-self: stretch;
  z-index: 1;
}

.blog-toc-sticky {
  position: relative;
  top: auto;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 10px 28px rgba(8, 15, 30, .04);
  width: 100%;
  box-sizing: border-box;
}

.blog-toc-sticky.is-fixed {
  position: fixed;
  z-index: 5;
  left: var(--blog-toc-left, auto);
  width: var(--blog-toc-width, 260px);
}

.blog-toc-sticky.is-bottom {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
}

@media(min-width:901px) {
  .blog-toc-sticky {
    position: sticky;
    top: 96px;
    z-index: 5;
  }
}

.blog-toc-label {
  margin: 0 0 .85rem;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
}

.blog-toc-nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-height: calc(100vh - 150px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-toc-list {
  display: contents;
}

.blog-toc-link {
  display: block;
  padding: .55rem .7rem;
  border-radius: 10px;
  border-left: 2px solid transparent;
  color: var(--grey);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.45;
  transition: color .2s, background .2s, border-color .2s;
}

.blog-toc-link:hover {
  color: var(--blue);
  background: #F0F4FC;
}

.blog-toc-link.is-active {
  color: var(--blue);
  background: rgba(0, 194, 212, .08);
  border-left-color: var(--cyan);
  font-weight: 700;
}

.blog-single-main {
  min-width: 0;
}

.blog-single-panel {
  max-width: none;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 20px;
  padding: 2rem 2rem 2.1rem;
  box-shadow: 0 14px 40px rgba(8, 15, 30, .06);
}

.blog-single-content h2 {
  scroll-margin-top: 110px;
}

.blog-single-featured {
  margin: -2rem -2rem 2rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.blog-single-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-single-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--navy);
}

.blog-single-content>*:first-child {
  margin-top: 0;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  font-family: var(--font-heading);
  color: #000;
  line-height: 1.3;
  margin: 2rem 0 .85rem;
  letter-spacing: -.015em;
}

.blog-single-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.blog-single-content h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
}

.blog-single-content p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  font-size: .98rem;
  line-height: 1.85;
}

.blog-single-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-single-content a:hover {
  color: var(--cyan);
}

.blog-single-content ul,
.blog-single-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--grey);
}

.blog-single-content li {
  margin: .35rem 0;
  line-height: 1.7;
}

.blog-single-content blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.35rem;
  border-left: 4px solid var(--cyan);
  background: #EBF3FF;
  border-radius: 0 14px 14px 0;
  color: var(--navy);
  font-style: italic;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.25rem 0;
}

.blog-single-content pre,
.blog-single-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86em;
}

.blog-single-content pre {
  background: #0D1B35;
  color: #E2E8F0;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1.25rem 0;
}

.blog-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .9rem;
}

.blog-single-content th,
.blog-single-content td {
  border: 1px solid var(--border);
  padding: .65rem .8rem;
  text-align: left;
}

.blog-single-content th {
  background: #F0F4FC;
  color: #000;
  font-weight: 700;
}

.blog-single-content .page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 1.75rem;
  font-weight: 600;
}

.blog-single-content .page-links a,
.blog-single-content .page-links>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--navy);
}

.blog-single-footer {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: #EBF3FF;
  border: 1px solid rgba(19, 82, 204, .12);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.blog-tag:hover {
  background: rgba(0, 194, 212, .12);
  color: var(--cyan);
}

.blog-post-nav {
  max-width: none;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blog-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(8, 15, 30, .04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  min-width: 0;
}

.blog-post-nav-item:hover {
  border-color: rgba(0, 194, 212, .35);
  box-shadow: 0 12px 32px rgba(19, 82, 204, .1);
  transform: translateY(-2px);
}

.blog-post-nav-item--next {
  text-align: right;
  align-items: flex-end;
}

.blog-post-nav-item--empty {
  visibility: hidden;
  pointer-events: none;
}

.blog-post-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
}

.blog-post-nav-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-related-section {
  background: #fff;
  padding: 4rem 0 4.5rem;
  border-top: 1px solid rgba(226, 232, 240, .9);
}

.blog-related-hdr {
  margin-bottom: 2rem;
  max-width: 640px;
}

.blog-related-hdr .s-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0;
}

.blog-grid--related {
  margin-top: 0;
}

.blog-cta {
  margin-top: 0;
}

@media(max-width:1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .blog-single-layout.has-toc {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 1.25rem;
  }

  .blog-toc-sticky {
    top: 88px;
    padding: 1rem .9rem;
  }

  .blog-toc-nav {
    max-height: calc(100vh - 140px);
  }
}

@media(max-width:900px) {
  .blog-single-layout.has-toc {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-toc {
    align-self: auto;
    height: auto !important;
    max-height: none !important;
  }

  .blog-toc-sticky,
  .blog-toc-sticky.is-fixed,
  .blog-toc-sticky.is-bottom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    width: 100% !important;
    max-height: none !important;
    z-index: 1 !important;
    transform: none !important;
  }

  .blog-toc-spacer {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .blog-toc-nav,
  .blog-toc-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: .45rem !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }

  .blog-toc-link {
    border-left: 0 !important;
    border: 1px solid rgba(226, 232, 240, .95);
    background: #F7F9FC;
    padding: .5rem .8rem;
    font-size: .78rem;
    line-height: 1.35;
    border-radius: 100px;
    max-width: 100%;
  }

  .blog-toc-link.is-active {
    border-color: rgba(0, 194, 212, .4) !important;
    background: rgba(0, 194, 212, .12) !important;
    color: var(--blue) !important;
  }
}

@media(max-width:768px) {
  .blog-hero {
    padding-top: 3.25rem;
    padding-bottom: 2.75rem;
  }

  .blog-hero--single .pg-hero-inner h1 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .blog-section {
    padding: 3rem 0 3.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-single-section {
    padding: 1.75rem 0 2.5rem;
  }

  .blog-single-panel {
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: 16px;
  }

  .blog-single-featured {
    margin: -1.35rem -1.25rem 1.35rem;
    border-radius: 16px 16px 0 0;
  }

  .blog-single-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-top: 1.15rem;
  }

  .blog-post-nav-item--next {
    text-align: left;
    align-items: flex-start;
  }

  .blog-post-nav-item--empty {
    display: none;
  }

  .blog-related-section {
    padding: 3rem 0 3.5rem;
  }

  .blog-single-content h2 {
    scroll-margin-top: 90px;
  }

  .blog-toc-label {
    margin-bottom: .65rem;
  }
}

@media(max-width:480px) {
  .blog-card-body {
    padding: 1.2rem 1.15rem 1.25rem;
  }

  .blog-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: .8rem;
  }

  .blog-single-panel {
    padding: 1.15rem 1rem 1.25rem;
  }

  .blog-single-featured {
    margin: -1.15rem -1rem 1.15rem;
  }

  .blog-toc-sticky {
    padding: 1rem .9rem;
  }

  .blog-toc-link {
    font-size: .74rem;
    padding: .45rem .7rem;
  }
}

/* ── Legal pages (Privacy / Terms) ── */
.legal-hero .pg-hero-sub.legal-hero-sub {
  margin-top: 1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
}

.legal-section {
  background: #fff;
  padding: 3.5rem 0 4.5rem;
}

.legal-content {
  max-width: none;
  width: 100%;
}

.legal-content>*:first-child {
  margin-top: 0;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  font-family: var(--font-heading);
  color: #000;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 2rem 0 .85rem;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin-top: 2.15rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
}

.legal-content p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  font-size: .98rem;
  line-height: 1.85;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--cyan);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--grey);
}

.legal-content li {
  margin: .35rem 0;
  line-height: 1.7;
}

.legal-content em {
  font-style: italic;
}

.legal-cta {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-cta p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  font-size: .95rem;
}

.legal-cta-acts {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

.legal-cta .btn-ghost {
  border: 1.5px solid rgba(19, 82, 204, .22);
  color: var(--blue);
  background: #fff;
}

.legal-cta .btn-ghost:hover {
  border-color: var(--blue);
  background: #EBF3FF;
  color: var(--navy);
}

@media(max-width:768px) {
  .legal-section {
    padding: 2.25rem 0 3rem;
  }

  .legal-content h2 {
    scroll-margin-top: 90px;
    margin-top: 1.75rem;
    padding-top: 1.4rem;
  }

  .legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
  }

  .legal-cta-acts {
    flex-direction: column;
    align-items: center;
  }

  .legal-cta .btn-primary,
  .legal-cta .btn-ghost {
    width: auto;
    max-width: 100%;
  }
}

/* ── 404 page (simple) ── */
.error-404-page {
  display: block;
  background: #fff;
}

.error-404-simple {
  background: #fff;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.error-404-simple-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.error-404-code {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 14vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  margin: 0 0 .5rem;
  background: linear-gradient(135deg, #1352CC 0%, #00C2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.error-404-simple h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.error-404-sub {
  margin: 0 auto;
  max-width: 480px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
}

.error-404-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.error-404-btn-ghost.btn-ghost {
  border: 1.5px solid rgba(19, 82, 204, .22);
  color: var(--blue);
  background: #fff;
}

.error-404-btn-ghost.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--light);
  color: var(--blue);
}

@media(max-width:768px) {
  .error-404-simple {
    padding: 3.5rem 0;
    min-height: calc(100vh - 140px);
  }

  .error-404-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404-actions .btn-primary,
  .error-404-actions .btn-ghost {
    width: auto;
    max-width: 100%;
  }
}