@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";

/* src/styles/styles.scss */
:root {
  --grad-primary:
    linear-gradient(
      180deg,
      #3a4cf5 0%,
      #0a1bb8 100%);
  --grad-crimson:
    linear-gradient(
      180deg,
      #e5202e 0%,
      #a60b15 100%);
  --grad-success:
    linear-gradient(
      180deg,
      #37c664 0%,
      #1a8a3d 100%);
  --grad-ghost:
    linear-gradient(
      180deg,
      #2a2a32 0%,
      #101016 100%);
  --glow-primary: 0 0 24px rgba(75, 107, 240, 0.50);
  --glow-crimson: 0 0 24px rgba(229, 57, 70, 0.50);
  --glow-success: 0 0 24px rgba(47, 191, 93, 0.45);
  --glow-ghost: 0 0 12px rgba(0, 0, 0, 0.40);
  --shadow-focus: 0 0 0 3px rgba(2, 0, 189, 0.55);
  --gloss-inset: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expeditionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expeditionPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
@keyframes expeditionFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-stagger .scroll-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-stagger .scroll-child.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-stagger .scroll-child:nth-child(1) {
  transition-delay: 0.12s;
}
.scroll-reveal-stagger .scroll-child:nth-child(2) {
  transition-delay: 0.24s;
}
.scroll-reveal-stagger .scroll-child:nth-child(3) {
  transition-delay: 0.36s;
}
.scroll-reveal-stagger .scroll-child:nth-child(4) {
  transition-delay: 0.48s;
}
.scroll-reveal-stagger .scroll-child:nth-child(5) {
  transition-delay: 0.6s;
}
.scroll-reveal-stagger .scroll-child:nth-child(6) {
  transition-delay: 0.72s;
}
.animate-pulse {
  animation: expeditionPulse 2s infinite;
}
.animate-fade-in {
  animation: expeditionFadeIn 0.8s ease-out;
}
.animate-float {
  animation: expeditionFloat 3s ease-in-out infinite;
}
.animate-shake {
  animation: shake 0.5s ease-in-out;
}
.animate-success {
  animation: success-pulse 1s ease-out;
}
.animate-stagger:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-stagger:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-stagger:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-stagger:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-stagger:nth-child(5) {
  animation-delay: 0.5s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
  .scroll-reveal-stagger .scroll-child {
    opacity: 1;
    transform: none;
  }
  .animate-pulse,
  .animate-fade-in,
  .animate-float,
  .animate-shake,
  .animate-success {
    animation: none !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Century Gothic",
    "Apple Gothic",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e8e4de;
  margin: 0 0 1rem 0;
}
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
p {
  margin: 0 0 1rem 0;
  color: #d4d0c8;
  line-height: 1.7;
}
a {
  color: #7b9ec7;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #a3bfdb;
  text-decoration: underline;
}
ul,
ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.25rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family:
    "Inter",
    "Trebuchet MS",
    "Arial",
    sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #d4d0c8;
  overflow-x: hidden;
  background-color: #0d0d12;
  background-image: url(/assets/images/banners/a-beacon-in-desert-mountain.jpg);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
::selection {
  background: #0200bd;
  color: #e8e4de;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0d0d12;
}
::-webkit-scrollbar-thumb {
  background: #242430;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6e6a62;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: transparent;
  padding: 3rem 1rem;
}
@media (max-width: 768px) {
  .scene {
    aspect-ratio: auto;
    min-height: auto;
    overflow: visible;
    padding: 80px 1rem;
  }
}
.content {
  position: relative;
  z-index: 1;
}
.thirds-ll > .content,
.thirds-ll > .container,
.thirds-ll > :first-child,
[data-compose=ll] > .content,
[data-compose=ll] > .container,
[data-compose=ll] > :first-child {
  grid-column: 1/3;
  grid-row: 2/4;
  align-self: end;
  justify-self: start;
  text-align: left;
  max-width: 700px;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .thirds-ll > .content,
  .thirds-ll > .container,
  .thirds-ll > :first-child,
  [data-compose=ll] > .content,
  [data-compose=ll] > .container,
  [data-compose=ll] > :first-child {
    grid-column: 1;
    grid-row: 2/4;
    max-width: 100%;
    padding-bottom: 1.5rem;
  }
}
.thirds-mc > .content,
.thirds-mc > .container,
.thirds-mc > :first-child,
[data-compose=mc] > .content,
[data-compose=mc] > .container,
[data-compose=mc] > :first-child {
  grid-column: 1/4;
  grid-row: 1/4;
  place-self: center;
  text-align: center;
}
@media (max-width: 768px) {
  .thirds-mc > .content,
  .thirds-mc > .container,
  .thirds-mc > :first-child,
  [data-compose=mc] > .content,
  [data-compose=mc] > .container,
  [data-compose=mc] > :first-child {
    grid-column: 1;
    grid-row: 1/4;
  }
}
.thirds-lr > .content,
.thirds-lr > .container,
.thirds-lr > :first-child,
[data-compose=lr] > .content,
[data-compose=lr] > .container,
[data-compose=lr] > :first-child {
  grid-column: 2/4;
  grid-row: 2/4;
  align-self: end;
  justify-self: end;
  text-align: right;
  max-width: 700px;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .thirds-lr > .content,
  .thirds-lr > .container,
  .thirds-lr > :first-child,
  [data-compose=lr] > .content,
  [data-compose=lr] > .container,
  [data-compose=lr] > :first-child {
    grid-column: 1;
    grid-row: 2/4;
    max-width: 100%;
    text-align: left;
    justify-self: start;
    padding-bottom: 1.5rem;
  }
}
.thirds-ul > .content,
.thirds-ul > .container,
.thirds-ul > :first-child,
[data-compose=ul] > .content,
[data-compose=ul] > .container,
[data-compose=ul] > :first-child {
  grid-column: 1/3;
  grid-row: 1/3;
  align-self: start;
  justify-self: start;
  text-align: left;
  max-width: 700px;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .thirds-ul > .content,
  .thirds-ul > .container,
  .thirds-ul > :first-child,
  [data-compose=ul] > .content,
  [data-compose=ul] > .container,
  [data-compose=ul] > :first-child {
    grid-column: 1;
    grid-row: 1/3;
    max-width: 100%;
    padding-top: 1.5rem;
  }
}
.thirds-ur > .content,
.thirds-ur > .container,
.thirds-ur > :first-child,
[data-compose=ur] > .content,
[data-compose=ur] > .container,
[data-compose=ur] > :first-child {
  grid-column: 2/4;
  grid-row: 1/3;
  align-self: start;
  justify-self: end;
  text-align: right;
  max-width: 700px;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .thirds-ur > .content,
  .thirds-ur > .container,
  .thirds-ur > :first-child,
  [data-compose=ur] > .content,
  [data-compose=ur] > .container,
  [data-compose=ur] > :first-child {
    grid-column: 1;
    grid-row: 1/3;
    max-width: 100%;
    text-align: left;
    justify-self: start;
    padding-top: 1.5rem;
  }
}
.thirds-ml > .content,
.thirds-ml > .container,
.thirds-ml > :first-child,
[data-compose=ml] > .content,
[data-compose=ml] > .container,
[data-compose=ml] > :first-child {
  grid-column: 1/3;
  grid-row: 1/4;
  align-self: center;
  justify-self: start;
  text-align: left;
}
@media (max-width: 768px) {
  .thirds-ml > .content,
  .thirds-ml > .container,
  .thirds-ml > :first-child,
  [data-compose=ml] > .content,
  [data-compose=ml] > .container,
  [data-compose=ml] > :first-child {
    grid-column: 1;
    grid-row: 1/4;
  }
}
.thirds-ff > .content,
.thirds-ff > .container,
.thirds-ff > :first-child,
[data-compose=ff] > .content,
[data-compose=ff] > .container,
[data-compose=ff] > :first-child {
  grid-column: 1/4;
  grid-row: 1/4;
  align-self: center;
  justify-self: center;
  width: 100%;
}
@media (max-width: 768px) {
  .thirds-ff > .content,
  .thirds-ff > .container,
  .thirds-ff > :first-child,
  [data-compose=ff] > .content,
  [data-compose=ff] > .container,
  [data-compose=ff] > :first-child {
    grid-column: 1;
  }
}
app-home {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
}
app-newsletter-signup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
}
app-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
@media (max-width: 768px) {
  app-contact-form {
    aspect-ratio: auto;
    min-height: auto;
    padding: 80px 0;
  }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-stagger .scroll-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-stagger .scroll-child.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-stagger .scroll-child:nth-child(1) {
  transition-delay: 0.12s;
}
.scroll-reveal-stagger .scroll-child:nth-child(2) {
  transition-delay: 0.24s;
}
.scroll-reveal-stagger .scroll-child:nth-child(3) {
  transition-delay: 0.36s;
}
.scroll-reveal-stagger .scroll-child:nth-child(4) {
  transition-delay: 0.48s;
}
.scroll-reveal-stagger .scroll-child:nth-child(5) {
  transition-delay: 0.6s;
}
.scroll-reveal-stagger .scroll-child:nth-child(6) {
  transition-delay: 0.72s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
:focus-visible {
  outline: 2px solid #0200bd;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #0200bd;
  color: white;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  top: 6px;
}
.btn,
[class*=btn-primary],
[class*=btn-red],
[class*=btn-green],
button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family:
    "Inter",
    "Trebuchet MS",
    "Arial",
    sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition:
    filter 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}
.btn:focus-visible,
[class*=btn-primary]:focus-visible,
[class*=btn-red]:focus-visible,
[class*=btn-green]:focus-visible,
button[type=submit]:focus-visible {
  outline: 2px solid #0200bd;
  outline-offset: 3px;
}
.btn:disabled,
[class*=btn-primary]:disabled,
[class*=btn-red]:disabled,
[class*=btn-green]:disabled,
button[type=submit]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
  filter: none;
}
.btn,
[class*=btn-primary],
button[type=submit] {
  background:
    linear-gradient(
      160deg,
      rgb(2.5396825397, 0, 240) 0%,
      #0200bd 45%,
      rgb(1.4603174603, 0, 138) 100%);
  border: 1px solid rgb(2.6476190476, 0, 250.2);
  box-shadow: 0 4px 18px rgba(2, 0, 189, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn::before,
[class*=btn-primary]::before,
button[type=submit]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.06) 52%,
      transparent 52%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 30%);
  border-radius: inherit;
  pointer-events: none;
}
.btn:hover,
[class*=btn-primary]:hover,
button[type=submit]:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(2, 0, 189, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}
.btn:active,
[class*=btn-primary]:active,
button[type=submit]:active {
  filter: brightness(0.85);
  transform: none;
}
[class*=btn-red] {
  background:
    linear-gradient(
      160deg,
      rgb(236.7178217822, 16.2821782178, 30.0594059406) 0%,
      #bd0d18 45%,
      rgb(141.2821782178, 9.7178217822, 17.9405940594) 100%);
  border: 1px solid rgb(239.1168316832, 24.0831683168, 37.5227722772);
  box-shadow: 0 4px 18px rgba(189, 13, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
[class*=btn-red]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.06) 52%,
      transparent 52%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 30%);
  border-radius: inherit;
  pointer-events: none;
}
[class*=btn-red]:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(189, 13, 24, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}
[class*=btn-red]:active {
  filter: brightness(0.85);
  transform: none;
}
[class*=btn-red]:focus-visible {
  outline-color: #bd0d18;
}
[class*=btn-green] {
  background:
    linear-gradient(
      160deg,
      rgb(51.5909090909, 203.7840909091, 23.2159090909) 0%,
      #289e12 45%,
      rgb(28.4090909091, 112.2159090909, 12.7840909091) 100%);
  border: 1px solid rgb(53.9090909091, 212.9409090909, 24.2590909091);
  box-shadow: 0 4px 18px rgba(40, 158, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
[class*=btn-green]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0.06) 52%,
      transparent 52%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 30%);
  border-radius: inherit;
  pointer-events: none;
}
[class*=btn-green]:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(40, 158, 18, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}
[class*=btn-green]:active {
  filter: brightness(0.85);
  transform: none;
}
[class*=btn-green]:focus-visible {
  outline-color: #289e12;
}
[class*=btn-secondary],
[class*=btn-outline] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #d4d0c8;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-family:
    "Inter",
    "Trebuchet MS",
    "Arial",
    sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
[class*=btn-secondary]:hover,
[class*=btn-outline]:hover {
  border-color: #0200bd;
  color: #e8e4de;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(2, 0, 189, 0.25);
  text-decoration: none;
}
[class*=btn-secondary]:active,
[class*=btn-outline]:active {
  transform: none;
}
[class*=btn-secondary]:focus-visible,
[class*=btn-outline]:focus-visible {
  outline: 2px solid #0200bd;
  outline-offset: 3px;
}
[class*=btn-secondary]:disabled,
[class*=btn-outline]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
[class*=btn-lg],
[class*=btn-large] {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}
[class*=btn-sm],
[class*=btn-small] {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--loading {
  color: transparent !important;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: om-spin 0.8s linear infinite;
}
@keyframes om-spin {
  to {
    transform: rotate(360deg);
  }
}
.card {
  background: #e2e8f0;
  color: #0f2a44;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(15, 42, 68, 0.2);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
}
.card .card-icon {
  text-align: center;
  margin-bottom: 1rem;
}
.card .card-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(45%) saturate(3151%) hue-rotate(201deg) brightness(92%) contrast(103%);
}
.card .card-header {
  color: #0f2a44;
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.card .card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.card .card-features li {
  padding: 0.5rem 0;
  color: #2d5a87;
  font-size: 1rem;
  line-height: 1.625;
  position: relative;
}
.card .card-features li:before {
  content: "\2713";
  color: #10b981;
  font-weight: 700;
  margin-right: 0.5rem;
}
.card .card-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.card.dark {
  background: #1a365d;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.card.dark .card-header {
  color: #e2e8f0;
}
.card.dark .card-features li {
  color: #94a3b8;
}
.card.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.card.dark.success {
  border-left: 4px solid #10b981;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.dark.alert {
  border-left: 4px solid #ff4444;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.dark.info {
  border-left: 4px solid #ff6b35;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.featured {
  transform: scale(1.02);
  overflow: visible !important;
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3), 0 0 0 2px rgba(255, 107, 53, 0.2);
}
.card.featured .popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  white-space: nowrap;
}
.card.featured:hover {
  transform: scale(1.02) translateY(-3px);
}
@media (max-width: 480px) {
  .card.featured {
    transform: none;
  }
  .card.featured:hover {
    transform: translateY(-2px);
  }
}
.card.elevated {
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
}
.card.elevated:hover {
  box-shadow: 0 30px 100px rgba(15, 42, 68, 0.3), 0 0 0 1px rgba(226, 232, 240, 0.2);
}
.card.bordered {
  border: 2px solid #ff6b35;
}
.card.bordered:hover {
  border-color: #ffa366;
}
.card.compact {
  padding: 1.5rem;
}
.card.compact .card-header {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.card.large {
  padding: 40px;
}
.card.large .card-header {
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .card {
    padding: 0.75rem;
  }
  .card .card-header {
    font-size: 1.125rem;
  }
  .card .card-features li {
    font-size: 0.875rem;
  }
}
.card.testimonial {
  background: #e2e8f0;
  color: #0f2a44;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(15, 42, 68, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.testimonial .testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}
.card.testimonial .testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #0f2a44;
  font-style: italic;
  margin: 0;
}
.card.testimonial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.card.testimonial .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.card.testimonial .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
}
.card.testimonial .testimonial-author .author-info strong {
  color: #0f2a44;
  font-size: 1rem;
  font-weight: 700;
}
.card.testimonial .testimonial-author .author-info span {
  color: #2d5a87;
  font-size: 0.875rem;
}
.card.testimonial .result-metric {
  background: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}
.form-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .form-card {
    margin: 0 0.75rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}
.form-card.light {
  background: #e2e8f0;
  color: #0f2a44;
}
.form-card.light .form-header h2 {
  color: #0f2a44;
}
.form-card.light .form-header p {
  color: #94a3b8;
}
.form-card.dark {
  background: #1a365d;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.form-card.dark .form-header h2 {
  color: #e2e8f0;
}
.form-card.dark .form-header p {
  color: #94a3b8;
}
.form-card.dark .form-group input,
.form-card.dark .form-group select,
.form-card.dark .form-group textarea {
  background: rgba(15, 42, 68, 0.6);
  border: 2px solid rgba(226, 232, 240, 0.2);
  color: #e2e8f0;
}
.form-card.dark .form-group input::placeholder,
.form-card.dark .form-group select::placeholder,
.form-card.dark .form-group textarea::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
.form-card.dark .form-group input:focus,
.form-card.dark .form-group select:focus,
.form-card.dark .form-group textarea:focus {
  background: rgba(15, 42, 68, 0.8);
  border-color: #ff6b35;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.form-card.dark .form-group label {
  color: #e2e8f0;
}
.form-card.compact {
  padding: 2rem;
  border-radius: 16px;
  max-width: 480px;
}
.form-card.elevated {
  transform: translateY(-4px);
  box-shadow:
    0 25px 80px rgba(15, 42, 68, 0.5),
    0 0 0 1px rgba(226, 232, 240, 0.2),
    0 0 60px rgba(255, 107, 53, 0.2);
}
.form-card.elevated:hover {
  transform: translateY(-6px);
}
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-header h2 {
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .form-header h2 {
    font-size: 1.25rem;
  }
}
.form-header p {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (max-width: 480px) {
  .form-header p {
    font-size: 1rem;
  }
}
.form-header .subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .form .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.form .form-group {
  margin-bottom: 1.5rem;
}
.form .form-group label {
  display: block;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.form .form-group label::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ff6b35;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.form .form-group label .required {
  color: #ff6b35;
  margin-left: 2px;
}
.form .form-group input,
.form .form-group select,
.form .form-group textarea {
  width: 100%;
  background: rgba(45, 90, 135, 0.08);
  border: 2px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05);
}
.form .form-group input::placeholder,
.form .form-group select::placeholder,
.form .form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.7;
}
.form .form-group input:focus,
.form .form-group select:focus,
.form .form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(255, 107, 53, 0.15);
  transform: translateY(-1px);
}
.form .form-group input:valid:not(:placeholder-shown),
.form .form-group select:valid:not(:placeholder-shown),
.form .form-group textarea:valid:not(:placeholder-shown) {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}
.form .form-group input:valid:not(:placeholder-shown):focus,
.form .form-group select:valid:not(:placeholder-shown):focus,
.form .form-group textarea:valid:not(:placeholder-shown):focus {
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form .form-group input:invalid:not(:placeholder-shown):not(:focus),
.form .form-group select:invalid:not(:placeholder-shown):not(:focus),
.form .form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}
.form .form-group input:disabled,
.form .form-group select:disabled,
.form .form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: rgba(148, 163, 184, 0.1);
}
.form .form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.625;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
}
.form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form .form-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
.form .form-group input[type=checkbox],
.form .form-group input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: #ff6b35;
}
.form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
  }
}
.form-actions.center {
  justify-content: center;
}
.form-actions.space-between {
  justify-content: space-between;
}
.demo-includes,
.trust-indicators {
  margin: 1.5rem 0;
  text-align: center;
}
.demo-includes p,
.trust-indicators p {
  margin-bottom: 0.75rem;
}
.demo-includes p strong,
.trust-indicators p strong {
  font-weight: 700;
}
.demo-includes .trust-indicators,
.trust-indicators .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.demo-includes .trust-indicators span,
.trust-indicators .trust-indicators span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(45, 90, 135, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: 0.3s ease;
}
.demo-includes .trust-indicators span:hover,
.trust-indicators .trust-indicators span:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.15);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  animation: shake 0.5s ease-in-out;
}
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  animation: success-pulse 1s ease-out;
}
.form-text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}
.form-error {
  color: #ff4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-error::before {
  content: "\26a0";
  font-size: 1rem;
}
.form-success {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-success::before {
  content: "\2713";
  font-size: 1rem;
}
.form-errors {
  margin-top: 0.5rem;
  min-height: 20px;
}
.form-errors .error-text {
  display: block;
  color: #ff4444;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.form-errors .error-text:last-child {
  margin-bottom: 0;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4444 !important;
  background: rgba(255, 68, 68, 0.05) !important;
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
  animation: shake 0.5s ease-in-out;
}
.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}
.alert {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  animation: slideInDown 0.3s ease-out;
}
.alert.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.alert.alert-error .icon-warning::before {
  content: "\26a0\fe0f";
}
.alert.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}
.alert.alert-success .icon-check::before {
  content: "\2705";
}
.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.25rem;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.service-card--detailed .card-price {
  font-weight: 600;
}
.service-card--discovery {
  border-color: rgba(189, 13, 24, 0.4);
}
.service-card--discovery .card-category {
  color: #bd0d18;
}
.service-card--discovery .card-footer {
  border-top-color: rgba(189, 13, 24, 0.35);
}
.service-card--foundation {
  border-color: rgba(40, 158, 18, 0.4);
}
.service-card--foundation .card-category {
  color: #289e12;
}
.service-card--foundation .card-footer {
  border-top-color: rgba(40, 158, 18, 0.35);
}
.service-card--fractional {
  border-color: rgba(2, 0, 189, 0.4);
}
.service-card--fractional .card-category {
  color: #0200bd;
}
.service-card--fractional .card-footer {
  border-top-color: rgba(2, 0, 189, 0.35);
}
.service-card--custom-build {
  border-color: rgba(91, 33, 182, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(91, 33, 182, 0.4);
}
.service-card--custom-build .card-category {
  color: #5b21b6;
}
.service-card--custom-build .card-footer {
  border-top-color: rgba(91, 33, 182, 0.35);
}
.service-card--custom-build .card-cta {
  background-color: #5b21b6;
  border-color: #5b21b6;
}
.service-card--custom-build .card-cta:hover,
.service-card--custom-build .card-cta:focus-visible {
  background-color: #6d28d9;
  border-color: #6d28d9;
  box-shadow: 0 4px 16px rgba(91, 33, 182, 0.35);
}
.service-card--custom-build:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(91, 33, 182, 0.4);
}
@media (max-width: 768px) {
  .service-card--custom-build {
    box-shadow: 0 0 0 1px rgba(91, 33, 182, 0.4);
  }
  .service-card--custom-build:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(91, 33, 182, 0.4);
  }
}
.btn-gloss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family:
    "Inter",
    "Trebuchet MS",
    "Arial",
    sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  padding: 11px 22px;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss:hover {
  filter: brightness(1.08);
}
.btn-gloss:active {
  transform: translateY(1px);
}
.btn-gloss:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 0, 189, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss:hover,
.btn-gloss:focus,
.btn-gloss:active {
  text-decoration: none;
}
.btn-gloss--primary {
  background:
    linear-gradient(
      180deg,
      #3a4cf5,
      #0a1bb8);
  box-shadow: 0 0 24px rgba(75, 107, 240, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(2, 0, 189, 0.4),
    0 0 24px rgba(75, 107, 240, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--crimson {
  background:
    linear-gradient(
      180deg,
      #e5202e,
      #a60b15);
  box-shadow: 0 0 24px rgba(229, 57, 70, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--crimson:focus-visible {
  box-shadow:
    0 0 0 3px rgba(2, 0, 189, 0.4),
    0 0 24px rgba(229, 57, 70, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--success {
  background:
    linear-gradient(
      180deg,
      #37c664,
      #1a8a3d);
  box-shadow: 0 0 24px rgba(47, 191, 93, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--success:focus-visible {
  box-shadow:
    0 0 0 3px rgba(2, 0, 189, 0.4),
    0 0 24px rgba(47, 191, 93, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--ghost {
  background:
    linear-gradient(
      180deg,
      #2a2a32,
      #101016);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--ghost:focus-visible {
  box-shadow: 0 0 0 3px rgba(2, 0, 189, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-gloss--sm {
  padding: 8px 16px;
  font-size: 12px;
}
.btn-gloss--md {
  padding: 11px 22px;
  font-size: 13px;
}
.btn-gloss--lg {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-gloss:disabled,
.btn-gloss.is-disabled {
  filter: grayscale(0.4) brightness(0.7);
  cursor: not-allowed;
}
.btn-gloss:disabled:hover,
.btn-gloss.is-disabled:hover {
  filter: grayscale(0.4) brightness(0.7);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.container--sm {
  max-width: 640px;
}
.container--lg {
  max-width: 1400px;
}
.container--full {
  max-width: none;
  padding: 0;
}
.section {
  padding: 80px 0;
  position: relative;
  min-width: 0;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
}
.section.large {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .section.large {
    padding: 80px 0;
  }
}
.section.compact {
  padding: 60px 0;
}
@media (max-width: 480px) {
  .section.compact {
    padding: 40px 0;
  }
}
.section.tight {
  padding: 40px 0;
}
@media (max-width: 480px) {
  .section.tight {
    padding: 24px 0;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100%;
  }
}
.container.fluid {
  max-width: 100%;
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .container.fluid {
    padding: 0 0.75rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 3rem;
    padding: 0 0.75rem;
  }
}
.section-header h1,
.section-header h2 {
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  color: #e2e8f0;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .section-header h1,
  .section-header h2 {
    margin-bottom: 0.75rem;
  }
}
.section-header h1 {
  font-size: 3rem;
}
@media (max-width: 480px) {
  .section-header h1 {
    font-size: 2.25rem;
  }
}
.section-header h2 {
  font-size: 2.25rem;
}
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.875rem;
  }
}
.section-header p {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.625;
  margin: 0;
}
@media (max-width: 480px) {
  .section-header p {
    font-size: 1.125rem;
  }
}
.section.dark {
  background:
    linear-gradient(
      135deg,
      #1a365d 0%,
      #0f2a44 100%);
  color: #e2e8f0;
}
.section.light {
  background: #e2e8f0;
  color: #0f2a44;
}
.section.light .section-header h1,
.section.light .section-header h2 {
  color: #0f2a44;
}
.section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 480px) {
  .section.hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
}
.section.hero .container {
  width: 100%;
}
.section.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .section.hero .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .section.hero .hero-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .section.feature .grid {
    gap: 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .section.testimonial .grid {
    gap: 1rem !important;
  }
}
.section.demo .demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .section.demo .demo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .section.pricing .pricing-cards {
    gap: 1.5rem !important;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
@media (max-width: 480px) {
  .text-center-mobile {
    text-align: center !important;
  }
  .text-left-mobile {
    text-align: left !important;
  }
}
@media (max-width: 480px) {
  .section {
    overflow-x: hidden;
  }
  .section .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .section .btn-group .btn {
    width: 100%;
    max-width: 280px;
  }
  .section .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

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