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

/* src/styles.scss */
:root {
  --font-display:
    "FiraGO",
    "Inter",
    system-ui,
    sans-serif;
  --font-body:
    "FiraGO",
    "Inter",
    system-ui,
    sans-serif;
  --ink: #3a2e32;
  --ink-light: #52454a;
  --muted: #9c8a8f;
  --rose: #eecbd2;
  --rose-light: #f7e1e5;
  --rose-deep: #d4a3b3;
  --rose-dark: #b58092;
  --blush: #fdf8f9;
  --blush-deep: #faeef0;
  --champagne: #e0cca0;
  --champagne-light: #f5eedf;
  --surface: #fffdfd;
  --bg: #fdfafb;
  --line: #f0e4e7;
  --lavender: #c8b5d6;
  --lavender-light: #ece4f3;
  --gradient-rose:
    linear-gradient(
      135deg,
      #f2c4ce 0%,
      #d4a3b3 50%,
      #c8b5d6 100%);
  --gradient-warm:
    linear-gradient(
      135deg,
      #fdf2f4 0%,
      #f7dce2 50%,
      #eecbd2 100%);
  --gradient-glass:
    linear-gradient(
      135deg,
      rgba(255,253,253,0.9),
      rgba(253,248,249,0.7));
  --gradient-glow:
    linear-gradient(
      135deg,
      rgba(238,203,210,0.6),
      rgba(200,181,214,0.4));
  --gradient-border:
    linear-gradient(
      135deg,
      #f2c4ce,
      #c8b5d6,
      #d4a3b3);
  --shadow-soft: 0 4px 20px rgba(212,163,179,0.08);
  --shadow-md: 0 8px 32px rgba(212,163,179,0.12);
  --shadow-lg: 0 16px 48px rgba(212,163,179,0.15);
  --shadow-glow: 0 0 40px rgba(238,203,210,0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
}
@media (max-width: 768px) {
  html {
    overscroll-behavior-x: none;
  }
  body {
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgb(253, 248, 249) 0%,
      transparent 60%),
    radial-gradient(
      circle at 80% 20%,
      rgba(238, 203, 210, 0.65) 0%,
      transparent 50%),
    radial-gradient(
      circle at 20% 80%,
      rgba(200, 181, 214, 0.55) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 80%,
      rgba(247, 225, 229, 0.65) 0%,
      transparent 50%),
    radial-gradient(
      circle at 20% 20%,
      rgba(224, 204, 160, 0.35) 0%,
      transparent 50%);
  background-color: var(--bg);
  animation: aestheticMesh 25s infinite alternate ease-in-out;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
@keyframes aestheticMesh {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
  100% {
    transform: rotate(-10deg) scale(1.05);
  }
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}
::selection {
  background: var(--rose-light);
  color: var(--ink);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gradient-rose);
  border-radius: 2px;
}
.section-head {
  margin-bottom: 2rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.section-head p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}
.section-head--center {
  text-align: center;
}
.section-head--center p {
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-label {
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: opacity 0.35s;
}
.btn:hover::before {
  opacity: 1;
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background: var(--gradient-rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 163, 179, 0.25);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 163, 179, 0.35);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-color: var(--rose-light);
  color: var(--rose-deep);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--lg {
  padding: 0.88rem 2.1rem;
  font-size: 0.95rem;
}
.btn--white {
  background: #fff;
  color: var(--rose-deep);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseSoft {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes heroGlow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes noteFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-7px);
    opacity: 0.95;
  }
}
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-8px, 8px) scale(0.97);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes borderGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out),
    filter 0.65s var(--ease-out);
  will-change: opacity, transform;
}
.reveal[data-reveal=up] {
  transform: translateY(40px);
}
.reveal[data-reveal=left] {
  transform: translateX(-44px);
}
.reveal[data-reveal=right] {
  transform: translateX(44px);
}
.reveal[data-reveal=scale] {
  transform: scale(0.92) translateY(28px);
  filter: blur(3px);
}
.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .inner-hero::after {
    animation: none;
    opacity: 0.32;
  }
}
.gradient-border {
  position: relative;
  border: none !important;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.gradient-border:hover::before {
  opacity: 1;
}
.inner-hero {
  position: relative;
  padding: clamp(8.5rem, 15vh, 10.5rem) 1.5rem clamp(3rem, 5vh, 4.5rem);
  background:
    linear-gradient(
      to bottom,
      rgba(46, 37, 40, 0.3) 0%,
      rgba(46, 37, 40, 0.18) 100%),
    url(/hero-bg.png) center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.inner-hero::after {
  content: "";
  position: absolute;
  width: min(560px, 95vw);
  height: min(560px, 95vw);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(
      circle,
      rgba(238, 203, 210, 0.3) 0%,
      rgba(200, 181, 214, 0.1) 45%,
      transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}
.inner-hero::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: 8%;
  top: 15%;
  border-radius: 50%;
  background: rgba(200, 181, 214, 0.15);
  filter: blur(40px);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.page-note {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(9px);
  box-shadow: 0 10px 26px rgba(41, 26, 30, 0.34);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  animation: noteFloat 4.2s ease-in-out infinite;
}
.note-anchor {
  position: relative;
}
.page-note--home-1 {
  top: 11%;
  right: 8%;
  background: rgba(130, 86, 96, 0.68);
}
.page-note--home-2 {
  bottom: 24%;
  left: 6%;
  background: rgba(151, 96, 109, 0.66);
  animation-delay: 0.8s;
}
.page-note--about-1 {
  top: 18%;
  right: 10%;
  background: rgba(126, 82, 93, 0.66);
}
.page-note--proc-1 {
  top: 20%;
  right: 9%;
  background: rgba(142, 91, 82, 0.66);
}
.page-note--blog-1 {
  top: 20%;
  left: 8%;
  background: rgba(118, 74, 88, 0.66);
}
.page-note--contact-1 {
  top: 18%;
  right: 8%;
  background: rgba(136, 87, 99, 0.66);
}
.page-note--home-trust {
  top: 18%;
  right: 4.5%;
  background: rgba(122, 79, 90, 0.66);
}
.page-note--home-dir {
  top: 9%;
  left: 4%;
  background: rgba(143, 89, 102, 0.66);
}
.page-note--home-about {
  top: 7%;
  right: 4%;
  background: rgba(128, 80, 92, 0.66);
}
.page-note--home-hi {
  top: 11%;
  left: 4.5%;
  background: rgba(135, 84, 95, 0.66);
}
.page-note--home-faq {
  top: 9%;
  right: 5%;
  background: rgba(119, 75, 88, 0.66);
}
.page-note--about-intro {
  top: 10%;
  left: 5%;
  background: rgba(122, 79, 92, 0.66);
}
.page-note--about-journey {
  top: 8%;
  right: 6%;
  background: rgba(138, 88, 101, 0.66);
}
.page-note--proc-guide {
  top: 12%;
  right: 6%;
  background: rgba(133, 85, 95, 0.66);
}
.page-note--proc-cta {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(130, 82, 93, 0.66);
}
.page-note--blog-intro {
  top: -12px;
  right: 8%;
  background: rgba(125, 78, 91, 0.66);
}
.page-note--blog-tips {
  top: -14px;
  left: 6%;
  background: rgba(144, 89, 102, 0.66);
}
.page-note--contact-transport {
  top: -12px;
  right: 7%;
  background: rgba(134, 84, 96, 0.66);
}
.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeInUp 0.6s var(--ease-out) both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.inner-hero__content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.inner-hero__content p {
  margin: 0.75rem auto 0;
  max-width: 480px;
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.65;
  font-weight: 300;
}
.inner-hero--blog {
  background:
    linear-gradient(
      to bottom,
      rgba(46, 37, 40, 0.3) 0%,
      rgba(46, 37, 40, 0.18) 100%),
    url(/blog-hero2.png) center 15%/cover no-repeat;
}
.inner-hero--contact {
  background:
    linear-gradient(
      to bottom,
      rgba(46, 37, 40, 0.3) 0%,
      rgba(46, 37, 40, 0.18) 100%),
    url(/hero-bg.png) center 30%/cover no-repeat;
}
.inner-hero--procedures {
  background:
    linear-gradient(
      to bottom,
      rgba(46, 37, 40, 0.3) 0%,
      rgba(46, 37, 40, 0.18) 100%),
    url(/procedures-bg.png) center/cover no-repeat;
}
.inner-hero--about {
  background:
    linear-gradient(
      to bottom,
      rgba(46, 37, 40, 0.3) 0%,
      rgba(46, 37, 40, 0.18) 100%),
    url(/about-hero.png) 50% 70%/cover no-repeat;
}
@media (max-width: 768px) {
  .btn,
  button:not([class^=dir-dot]):not(.faq-progress) {
    touch-action: manipulation;
  }
  .inner-hero {
    padding: max(6.75rem, env(safe-area-inset-top, 0px) + 5.25rem) max(1rem, env(safe-area-inset-right, 0px)) max(2.25rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  }
  .inner-hero--about {
    background:
      linear-gradient(
        to bottom,
        rgba(46, 37, 40, 0.3) 0%,
        rgba(46, 37, 40, 0.18) 100%),
      url(/about-hero.png) 68% 52%/cover no-repeat;
  }
  .inner-hero__content {
    padding-inline: 0.25rem;
  }
  .inner-hero__content h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.85rem);
  }
  .inner-hero__content p {
    font-size: 0.94rem;
  }
  .section-head {
    margin-bottom: 1.5rem;
  }
  .section-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 2.1rem);
  }
  .section-head p {
    font-size: 0.92rem;
  }
  .page-note {
    display: none;
  }
}
@media (max-width: 480px) {
  .inner-hero__content h1 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }
  .btn {
    min-height: 44px;
    padding-inline: 1.2rem;
  }
  .btn--lg {
    min-height: 46px;
  }
}

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