/* src/styles.css */
:root {
  --indigo-900: #1e1b4b;
  --indigo-800: #312e81;
  --indigo-700: #3730a3;
  --indigo-600: #4338ca;
  --indigo-500: #6366f1;
  --indigo-400: #818cf8;
  --indigo-300: #a5b4fc;
  --indigo-100: #e0e7ff;
  --indigo-50: #eef2ff;
  --purple-600: #7c3aed;
  --purple-400: #a78bfa;
  --purple-200: #ddd6fe;
  --surface: #ffffff;
  --surface-2: #f8f7ff;
  --on-surface: #1a1a2e;
  --muted: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-card: 0 4px 32px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 20px 60px rgba(99, 102, 241, 0.18);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 999;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 8px;
  background: var(--indigo-600);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.back-to-top:hover {
  background: var(--indigo-700);
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--indigo-600);
  outline-offset: 2px;
}
.analytics-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: var(--indigo-900);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
.analytics-consent-text {
  margin: 0;
}
.analytics-consent-accept {
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 6px;
  background: var(--indigo-500);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.analytics-consent-accept:hover {
  background: var(--indigo-400);
}
.analytics-consent-accept:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
nav:not(.ops-layout-nav) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(30, 27, 75, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(165, 180, 252, 0.12);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
}
.nav-logo img {
  height: 36px;
}
.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  position: relative;
  color: var(--indigo-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #e8c547;
  bottom: -8px;
  left: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.125s ease, transform 0.125s ease;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after {
  opacity: 1;
  transform: translateY(0);
}
.nav-links a.nav-active,
.nav-links a:hover {
  color: #fff;
}
.nav-link-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link-login__icon {
  font-size: 1.125rem;
  line-height: 1;
}
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(165, 180, 252, 0.4);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nav-hamburger:hover {
  border-color: var(--indigo-400);
  color: var(--indigo-300);
}
.nav-hamburger-icon,
.nav-hamburger-icon::before,
.nav-hamburger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s;
}
.nav-hamburger-icon {
  position: relative;
}
.nav-hamburger-icon::before,
.nav-hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-hamburger-icon::before {
  top: -7px;
}
.nav-hamburger-icon::after {
  bottom: -7px;
}
.nav-hamburger[aria-expanded=true] .nav-hamburger-icon {
  background: transparent;
}
.nav-hamburger[aria-expanded=true] .nav-hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-hamburger[aria-expanded=true] .nav-hamburger-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  width: min(320px, 85vw);
  height: 100%;
  background:
    linear-gradient(
      180deg,
      var(--indigo-900) 0%,
      #1a0533 100%);
  border-left: 1px solid rgba(165, 180, 252, 0.2);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}
.nav-offcanvas.is-open {
  transform: translateX(0);
}
.nav-offcanvas-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(165, 180, 252, 0.3);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.nav-offcanvas-close:hover {
  border-color: var(--indigo-400);
  color: var(--indigo-300);
}
.nav-offcanvas a {
  display: block;
  padding: 0.85rem 0;
  color: var(--indigo-300);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(165, 180, 252, 0.1);
  transition: color 0.2s;
}
.nav-offcanvas a:hover {
  color: #fff;
}
.nav-offcanvas-label {
  display: block;
  padding: 0.85rem 0 0.35rem;
  color: #e8c547;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(165, 180, 252, 0.1);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 180px;
  background: rgba(30, 27, 75, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(165, 180, 252, 0.2);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 1000;
}
.nav-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--indigo-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(165, 180, 252, 0.1);
}
.nav-dropdown-menu a::after {
  display: none;
}
@media (max-width: 1082px) {
  .nav-hamburger {
    display: flex;
  }
  nav:not(.ops-layout-nav) .nav-links a {
    display: none;
  }
}
.page-main {
  flex: 1;
  padding: 8rem 2rem 4rem;
  min-height: 60vh;
}
.portal-shell {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
main.page-main:has(.home-page) {
  padding: 0;
  padding-top: 4rem;
  min-height: 0;
}
main.page-main:has(.download-page) {
  padding: 0;
  min-height: 0;
}
main.page-main:has(app-pos) {
  padding: 0;
  min-height: 0;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
}
.page-main h1 {
  font-family: "Gasoek One", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--indigo-900);
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 0;
}
.page-main .lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.page-main a {
  color: var(--indigo-600);
  font-weight: 600;
  text-decoration: none;
}
.page-main a:hover {
  text-decoration: underline;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      var(--indigo-600),
      var(--purple-600));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(165, 180, 252, 0.4);
  color: var(--indigo-300);
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--indigo-400);
  color: #fff;
  transform: translateY(-3px);
}
footer {
  background: #0f0f0f;
  color: rgba(200, 210, 255, 0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.footer-brand .brand-name img {
  height: 32px;
  width: auto;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  color: #e8c547;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: rgba(200, 210, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(165, 180, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 210, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--indigo-400);
  color: #fff;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(200, 210, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--indigo-800);
  margin-bottom: 0.35rem;
}
.form-group input {
  width: 100%;
  max-width: 360px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--on-surface);
}
.form-group input:focus {
  outline: none;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.page-main .text-center {
  text-align: center;
}
.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}
.prose p {
  margin-bottom: 1rem;
}
.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--indigo-900);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.35rem;
}
.page-legal .legal-content {
  font-family:
    "Georgia",
    "Times New Roman",
    serif !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #1a1a2e !important;
  margin: 0 auto;
  padding: 0 0 3rem;
}
.page-legal .legal-content h2 {
  font-family: "Gasoek One", sans-serif !important;
  scroll-margin-top: 100px;
}
.page-legal .legal-content .effective-date {
  font-family: "Courier New", monospace !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  color: #555 !important;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.page-legal .legal-content .intro {
  font-size: 1rem !important;
  color: #333 !important;
  border-left: 3px solid var(--indigo-600);
  padding-left: 1rem;
  margin: 1.25rem 0 2rem;
  font-style: italic;
}
.page-legal .legal-content .toc {
  background: #f7f7f9;
  border: 1px solid #e0e0e8;
  border-radius: 6px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
}
.page-legal .legal-content .toc-title {
  font-family: "Trebuchet MS", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}
.page-legal .legal-content .toc ol {
  margin: 0;
  padding-left: 1.25rem;
  column-count: 2;
  column-gap: 2rem;
}
.page-legal .legal-content .toc li {
  font-size: 0.88rem !important;
  color: #444 !important;
  margin-bottom: 0.3rem;
  line-height: 1.5 !important;
  break-inside: avoid;
}
.page-legal .legal-content .toc a.toc-link {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.page-legal .legal-content .toc a.toc-link:hover {
  text-decoration: underline !important;
}
.page-legal .legal-content .section-heading {
  font-family:
    "Trebuchet MS",
    "Gill Sans",
    sans-serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
  padding-bottom: 0.35rem;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 100px;
}
.page-legal .legal-content .section-heading .section-number {
  display: inline-block;
  color: var(--indigo-600);
  margin-right: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.page-legal .legal-content .sub-heading {
  font-family: "Trebuchet MS", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
  text-decoration: underline;
  text-decoration-color: var(--indigo-600);
  text-underline-offset: 3px;
  margin: 1.5rem 0 0.5rem;
}
.page-legal .legal-content p {
  margin-bottom: 0.85rem !important;
  color: #2a2a3e !important;
  font-family:
    "Georgia",
    "Times New Roman",
    serif !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
}
.page-legal .legal-content ul {
  padding-left: 1.4rem !important;
  margin: 0.5rem 0 1rem !important;
}
.page-legal .legal-content ul li {
  margin-bottom: 0.4rem !important;
  color: #2a2a3e !important;
  font-family:
    "Georgia",
    "Times New Roman",
    serif !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
}
.page-legal .legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.87rem;
}
.page-legal .legal-content table thead tr {
  background: #1a1a2e;
  color: #fff;
}
.page-legal .legal-content table thead th {
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.page-legal .legal-content table tbody tr:nth-child(even) {
  background: #f4f4f8;
}
.page-legal .legal-content table tbody td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.6;
}
.page-legal .legal-content .callout {
  background: #f5f3ff;
  border-left: 4px solid var(--indigo-600);
  border-radius: 0 4px 4px 0;
  padding: 0.9rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: #333;
}
.page-legal .legal-content .callout strong {
  color: var(--indigo-600);
}
.page-legal .legal-content .policy-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  font-family: "Trebuchet MS", sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .page-legal .legal-content .toc ol {
    column-count: 1;
  }
  .page-legal .legal-content table {
    font-size: 0.8rem;
  }
}
section {
  padding: 6rem 2rem;
}
.section-bg-white {
  background: var(--surface) !important;
}
.section-bg-alt {
  background: var(--surface-2) !important;
}
.section-tag {
  display: inline-block;
  color: var(--indigo-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: "Gasoek One", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--indigo-900);
}
.section-sub {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      var(--indigo-900) 0%,
      #1a0533 60%,
      #0f0c29 100%);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 60% 50% at 30% 40%,
      rgba(99, 102, 241, .25) 0%,
      transparent 70%),
    radial-gradient(
      ellipse 40% 60% at 75% 60%,
      rgba(124, 58, 237, .2) 0%,
      transparent 70%);
  pointer-events: none;
}
.hero-carousel-wrap {
  width: 100%;
  margin-top: clamp(32px, 12.5vw, 110px);
  animation: fadeUp 0.8s 0.6s ease both;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 0 1rem;
  touch-action: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  z-index: 2;
}
.hero-carousel-wrap.carousel-dragging {
  cursor: grabbing;
}
.hero-carousel-container {
  position: relative;
  width: min(320px, 92vw);
  height: 440px;
  perspective: 1960px;
}
.hero-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  left: 0;
  top: 0;
  will-change: transform;
}
.hero-carousel__face {
  position: absolute;
  width: 280px;
  height: 400px;
  left: 50%;
  top: 0;
  margin-left: -140px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-carousel__face .carousel-phone {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      145deg,
      #312e81,
      #1e1b4b);
  border: 2px solid rgba(165, 180, 252, .25);
  border-radius: 2rem;
  padding: 12px 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-carousel__face .carousel-phone:has(.carousel-phone-inner--img) {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.hero-carousel__face .carousel-phone-inner.carousel-phone-inner--img {
  padding: 0;
  overflow: hidden;
  background: transparent;
  width: 100%;
  height: 100%;
}
.hero-carousel__face .carousel-phone-inner--img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 640px) {
  .hero-carousel-container {
    height: 400px;
  }
  .hero-carousel__face {
    width: 240px;
    height: 340px;
    margin-left: -120px;
  }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, .3);
  top: -10%;
  left: -8%;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, .25);
  bottom: 0;
  right: -5%;
  animation-delay: -4s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(129, 140, 248, .2);
  top: 40%;
  left: 60%;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  font-family: "Gasoek One", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: normal;
  line-height: 1.08;
  color: #fff;
  letter-spacing: 0;
}
.hero h1 .highlight {
  background:
    linear-gradient(
      90deg,
      var(--indigo-400),
      var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin: 1.5rem 0 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(200, 210, 255, .75);
}
.hero-sub strong {
  color: #e8c547;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn-ghost {
  color: var(--indigo-300);
  border-color: rgba(165, 180, 252, .4);
}
.hero-cta .btn-ghost:hover {
  color: #fff;
}
#why-frendigo {
  position: relative;
  background: var(--surface);
  color: var(--on-surface);
  padding-bottom: 280px;
}
#why-frendigo .why-frendigo-bottom-img {
  position: absolute;
  z-index: 1;
  bottom: -20px;
  right: -6vw;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(40px) scale(1.25);
  opacity: 0;
}
#why-frendigo .why-frendigo-bottom-img.why-frendigo__car--inview {
  opacity: 1;
  transform: translateY(0) scale(1.25);
}
@media (min-width: 1024px) {
  #why-frendigo .why-frendigo-bottom-img {
    bottom: -70px;
    right: -18vw;
    transform: translateY(56px) scale(1.7);
  }
  #why-frendigo .why-frendigo-bottom-img.why-frendigo__car--inview {
    transform: translateY(0) scale(1.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  #why-frendigo .why-frendigo-bottom-img {
    opacity: 1;
    transform: scale(1.25);
    transition: none;
  }
  @media (min-width: 1024px) {
    #why-frendigo .why-frendigo-bottom-img {
      transform: scale(1.7);
    }
  }
}
#how-it-works {
  position: relative;
  z-index: 0;
}
#why-frendigo .section-tag {
  color: var(--indigo-600);
}
#why-frendigo .section-heading {
  color: var(--indigo-900);
}
#why-frendigo .why-frendigo-subhead {
  margin: 0 0 0.75rem;
}
.why-frendigo-percent-wrap {
  width: 50%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .why-frendigo-percent-wrap {
    width: 100%;
  }
}
.why-frendigo-percent-heading {
  font-family: inherit;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  line-height: 1.1;
}
.why-frendigo-percent-heading .why-frendigo-pct-sup {
  font-size: 0.36em;
  vertical-align: super;
  color: inherit;
}
sup.why-frendigo-pct-sup {
  position: relative;
  top: -16px;
}
.why-frendigo-pct-to {
  font-size: 0.36em;
  position: relative;
  bottom: 25px;
}
.why-frendigo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.why-frendigo-left,
.why-frendigo-calc,
.why-frendigo-plans,
.why-frendigo-chart-wrap {
  min-width: 0;
}
.why-frendigo-chart-wrap .bar-chart-wrap {
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin: 0;
}
.why-frendigo-calc {
  text-align: left;
}
.why-frendigo-form {
  display: block;
  margin-bottom: 1rem;
}
.why-frendigo-inline-sentence {
  font-size: 0.95rem;
  color: var(--indigo-800);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.why-frendigo-inline-input {
  font-weight: 700;
  text-decoration: underline;
  border: none;
  background: none;
  color: var(--indigo-800);
  font-size: inherit;
  padding: 0;
  width: 4ch;
  min-width: 2ch;
  box-sizing: content-box;
  -webkit-appearance: none;
  appearance: none;
}
.why-frendigo-inline-input::-webkit-outer-spin-button,
.why-frendigo-inline-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.why-frendigo-inline-input[type=number] {
  -moz-appearance: textfield;
}
.why-frendigo-inline-input:focus {
  outline: none;
}
.why-frendigo-range {
  font-weight: 700;
  color: var(--indigo-700);
}
.why-frendigo-range .why-frendigo-normal {
  font-weight: normal;
}
.why-frendigo-range .take-amount {
  text-decoration: underline;
  color: #b91c1c;
  font-weight: 600;
}
.why-frendigo-prompt {
  font-size: 0.95rem;
  color: var(--indigo-700);
  padding: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 102, 241, .15);
  text-align: left;
  display: none;
}
.why-frendigo-prompt.visible {
  display: block;
}
.why-frendigo-plans-reveal {
  opacity: 0;
  transform: translateX(48px);
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  margin-bottom: -20px;
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out,
    max-height 0.45s ease-out,
    margin-bottom 0.45s ease-out,
    visibility 0s linear 0.45s;
}
.why-frendigo-plans-reveal.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  max-height: 320px;
  overflow: visible;
  margin-bottom: -20px;
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out,
    max-height 0.45s ease-out;
}
.why-frendigo-plans-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo-700);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .why-frendigo-inner {
    grid-template-columns: 1fr;
  }
}
.diff-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#the-difference .section-tag {
  color: var(--indigo-600);
}
#the-difference .section-heading {
  color: var(--indigo-900);
}
.diff-grid {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}
.diff-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--indigo-100);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.06);
}
.diff-row .diff-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-700);
  padding-top: 0.15rem;
}
.diff-label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background:
    linear-gradient(
      145deg,
      var(--indigo-100),
      #e8e4ff);
  color: var(--indigo-600);
  flex-shrink: 0;
}
.diff-label-icon .material-icons {
  font-size: 1.35rem;
  line-height: 1;
}
.diff-label-text {
  width: 100%;
  text-align: center;
  line-height: 1.25;
}
.diff-them,
.diff-us {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.diff-them strong,
.diff-us strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.diff-them strong {
  color: var(--muted);
}
.diff-us strong {
  color: var(--indigo-600);
}
.diff-us {
  color: var(--indigo-800);
}
@media (max-width: 768px) {
  .diff-row {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }
  .diff-row .diff-label {
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--indigo-100);
    margin-bottom: 0.25rem;
  }
}
.how-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--indigo-100);
  border-radius: 3rem;
  padding: 0.35rem;
  width: fit-content;
  margin: 2.5rem auto 2rem;
  box-shadow: 0 2px 16px rgba(99, 102, 241, 0.08);
}
.how-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.how-tab.active {
  background:
    linear-gradient(
      135deg,
      var(--indigo-600),
      var(--purple-600));
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, .3);
}
.how-panel {
  display: none;
}
.how-panel.active {
  display: block;
}
.how-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}
.how-content {
  min-width: 0;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.how-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}
.how-image img {
  max-height: 420px;
  width: auto;
  display: block;
  border-radius: var(--radius-xl);
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--indigo-600),
      var(--purple-600));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo-900);
  margin-bottom: 0.25rem;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .how-panel-inner {
    grid-template-columns: 1fr;
  }
}
.plans-section {
  background: var(--surface-2);
}
.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background: var(--indigo-50);
  border-radius: 3rem;
  padding: 0.35rem;
  width: fit-content;
  margin: 2.5rem auto 3rem;
}
.plans-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.plans-tab.active {
  background:
    linear-gradient(
      135deg,
      var(--indigo-600),
      var(--purple-600));
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, .3);
}
.plans-grid {
  display: grid;
  gap: 1.5rem;
}
.plans-grid.client-plans {
  grid-template-columns: 1fr 1fr;
}
.plans-grid.provider-plans {
  grid-template-columns: 1fr 1fr 1fr;
}
.plan-card {
  border: 2px solid var(--indigo-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-card:hover {
  border-color: var(--indigo-400);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--indigo-500);
  background:
    linear-gradient(
      160deg,
      var(--indigo-900),
      #1a0533);
  color: #fff;
}
.plan-card-premium {
  background: #e8c547;
  border-color: rgba(232, 197, 71, .8);
  color: #1a1a1a;
}
.plan-card-premium .plan-name,
.plan-card-premium .plan-amount,
.plan-card-premium .plan-period {
  color: #1a1a1a;
}
.plan-card-premium .plan-features li {
  color: rgba(26, 26, 26, .9);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(
      135deg,
      var(--indigo-600),
      var(--purple-600));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.plan-card.featured .plan-name {
  color: #fff;
}
.plan-price {
  margin: 0.75rem 0 1.25rem;
}
.plan-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--indigo-700);
}
.plan-card.featured .plan-amount {
  color: #fff;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--muted);
}
.plan-card.featured .plan-period {
  color: rgba(200, 210, 255, .6);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--muted);
}
.plan-card.featured .plan-features li {
  color: rgba(200, 210, 255, .8);
}
.plan-features li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 800;
  margin-right: 0.5rem;
}
.plan-feature-inline {
  flex: 1 1 0%;
  min-width: 0;
}
.plan-addons-tip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.2em;
  flex-shrink: 0;
  vertical-align: middle;
}
.plan-features li .addons-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
  vertical-align: middle;
  opacity: 0.85;
}
.plan-features li .addons-info-icon:hover {
  opacity: 1;
}
.plan-features li .addons-info-icon svg {
  width: 100%;
  height: 100%;
}
.plan-card.featured .plan-features li .addons-info-icon {
  opacity: 0.9;
}
.plan-addons-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;
  padding: 10px 14px;
  min-width: 120px;
  max-width: min(280px, calc(100vw - 24px));
  font-size: 0.8rem;
  line-height: 1.45;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  white-space: normal;
}
@media (max-width: 640px) {
  .plan-addons-tooltip {
    bottom: auto;
    top: 100%;
    margin-top: 6px;
    margin-bottom: 0;
  }
}
.plan-addons-tooltip.plan-addons-tooltip-list {
  max-width: min(320px, calc(100vw - 24px));
}
.plan-card:not(.featured) .plan-addons-tooltip {
  background: var(--on-surface);
  color: var(--surface);
}
.plan-card.featured .plan-addons-tooltip {
  background: rgba(15, 23, 42, 0.95);
  color: var(--indigo-100);
}
.plan-addons-tooltip.visible {
  display: block;
}
.plan-addons-tooltip.plan-tooltip-with-img {
  min-width: 180px;
  max-width: min(280px, calc(100vw - 24px));
  padding: 12px;
}
.plan-addons-tooltip.plan-tooltip-with-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-top: 8px;
}
.plans-panel {
  display: none;
}
.plans-panel.active {
  display: block;
}
@media (max-width: 768px) {
  .plans-grid.client-plans,
  .plans-grid.provider-plans {
    grid-template-columns: 1fr;
  }
}
.cta-banner {
  background:
    linear-gradient(
      135deg,
      var(--indigo-900) 0%,
      #1a0533 100%);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 50% 50%,
      rgba(99, 102, 241, .2) 0%,
      transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Gasoek One", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: normal;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: rgba(200, 210, 255, .7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-subscribe {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.cta-subscribe .cta-radios {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-subscribe .cta-radios label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 500;
}
.cta-subscribe .cta-email-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.cta-subscribe .cta-email {
  width: 100%;
  padding: 0.85rem 4.5rem 0.85rem 1.25rem;
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.cta-subscribe .cta-email::placeholder {
  color: rgba(255, 255, 255, .55);
}
.cta-subscribe .cta-send {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 1.25rem;
  border-radius: 1.5rem;
  border: none;
  background: #e8c547;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}
.cta-subscribe .cta-send:hover {
  opacity: 0.95;
  background: #f0d04a;
}
.cta-subscribe .cta-recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin: 0.75rem auto 1rem;
}
.cta-subscribe-msg {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  min-height: 1.4em;
  position: relative;
}
.cta-subscribe-msg.success {
  color: #86efac;
}
.cta-subscribe-msg.error {
  color: #fca5a5;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
