@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url("https://cdn-uicons.flaticon.com/2.6.0/uicons-solid-rounded/css/uicons-solid-rounded.css");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-brands/css/uicons-brands.css");
@import 'icons/icons.css';
:root {
  --primary: #f08080;
  --primary-rgb: 240, 128, 128;
  --secondary: #feac69;
  --secondary-rgb: 254, 172, 105;
  --black: #1b1b1b;
  --black-rgb: 27, 27, 27;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --text: #666666;
  --text-rgb: 102, 102, 102;
  --font: "Outfit", sans-serif;
}

[class*=fi-] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(15px, -15px);
  }
  66% {
    transform: translate(-10px, 10px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    transform: scale(1.05);
  }
}
@keyframes badgeShine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes badgeIconSpin {
  0%, 90% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.content.min {
  max-width: 1240px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  background: transparent;
  white-space: nowrap;
}
.button i {
  transition: all 300ms ease-in-out;
  font-size: 1.125rem;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.button:hover i {
  transform: translateX(3px);
}
.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.button.primary:hover {
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
.button.secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
.button.secondary:hover {
  box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.4);
}
.button.white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.button.white:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.button.outline {
  background: transparent;
  backdrop-filter: blur(10px);
}
.button.outline.primary {
  border-color: var(--primary);
  color: var(--primary);
}
.button.outline.primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}
.button.outline.white {
  border-color: var(--white);
  color: var(--white);
}
.button.outline.white:hover {
  background: var(--white);
  color: var(--primary);
}
.button.small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.button.small i {
  font-size: 1rem;
}
.button.large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}
.button.large i {
  font-size: 1.25rem;
}

* {
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 900px;
  position: relative;
}
.section-title .topic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.section-title .topic-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: badgeShine 3s ease-in-out infinite;
}
.section-title .topic-badge i {
  font-size: 1rem;
  animation: badgeIconSpin 4s linear infinite;
}
@media (max-width: 640px) {
  .section-title .topic-badge {
    font-size: 0.8125rem;
    padding: 0.5rem 1.25rem;
  }
}
.section-title h2 {
  font-size: 2.75rem;
  line-height: 1.3;
  color: var(--text);
  font-weight: 400;
  margin: 0;
}
@media (max-width: 968px) {
  .section-title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
}
.section-title p {
  font-size: 1.125rem;
  color: var(--text);
  margin: 1rem 0 0;
  line-height: 1.6;
}
.section-title.light::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
}
.section-title.light .topic-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.section-title.light h2 {
  color: var(--white);
}
.section-title.light p {
  color: rgba(255, 255, 255, 0.9);
}

[data-animate] {
  opacity: 0;
  transition: all 800ms ease-out;
}
[data-animate].animated {
  opacity: 1;
}
[data-animate][data-animate=fadeInLeft] {
  transform: translateX(-30px);
}
[data-animate][data-animate=fadeInLeft].animated {
  animation: fadeInLeft 800ms ease-out forwards;
}
[data-animate][data-animate=fadeInRight] {
  transform: translateX(30px);
}
[data-animate][data-animate=fadeInRight].animated {
  animation: fadeInRight 800ms ease-out forwards;
}
[data-animate][data-animate=fadeInUp] {
  transform: translateY(30px);
}
[data-animate][data-animate=fadeInUp].animated {
  animation: fadeInUp 800ms ease-out forwards;
}

footer {
  background: var(--black);
  padding: 3rem 0;
  color: var(--white);
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
footer .footer-logo img {
  max-width: 200px;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 300ms ease;
}
footer .footer-logo img:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  footer .footer-logo img {
    max-width: 160px;
  }
}
footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
footer .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
}
footer .footer-contact i {
  font-size: 1.25rem;
  color: var(--primary);
}
footer .footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 300ms ease;
}
footer .footer-contact a:hover {
  color: var(--primary);
}
footer .footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9375rem;
}
@media (max-width: 640px) {
  footer .footer-links {
    gap: 0.75rem;
    font-size: 0.875rem;
  }
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 300ms ease;
}
footer .footer-links a:hover {
  color: var(--white);
}
footer .footer-links .separator {
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 640px) {
  footer .footer-links .separator {
    display: none;
  }
}
@media (max-width: 640px) {
  footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
footer .footer-copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 640px) {
  footer .footer-copyright p {
    font-size: 0.8125rem;
  }
}

header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 400ms ease-in-out;
  background: transparent;
}
header#main-header .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
header#main-header .logo {
  display: block;
  position: relative;
  height: 30px;
  transition: all 400ms ease-in-out;
}
header#main-header .logo img {
  height: 100%;
  width: auto;
  transition: opacity 400ms ease-in-out;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header#main-header .logo .logo-white {
  opacity: 1;
}
header#main-header .logo .logo-dark {
  opacity: 0;
}
header#main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header#main-header.scrolled .logo {
  height: 40px;
}
header#main-header.scrolled .logo .logo-white {
  opacity: 0;
}
header#main-header.scrolled .logo .logo-dark {
  opacity: 1;
}

main.home section.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #fa9a9a 50%, var(--secondary) 100%);
}
main.home section.hero .content {
  position: relative;
  z-index: 2;
}
main.home section.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  main.home section.hero .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
main.home section.hero .hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 1.5rem;
  font-weight: 300;
}
main.home section.hero .hero-left h1 .highlight {
  font-weight: 800;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}
@media (max-width: 968px) {
  main.home section.hero .hero-left h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 640px) {
  main.home section.hero .hero-left h1 {
    font-size: 1.875rem;
  }
}
main.home section.hero .hero-left p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  font-weight: 400;
}
@media (max-width: 640px) {
  main.home section.hero .hero-left p {
    font-size: 1.125rem;
  }
}
main.home section.hero .hero-left .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  main.home section.hero .hero-left .hero-cta {
    flex-direction: column;
  }
  main.home section.hero .hero-left .hero-cta .button {
    width: 100%;
  }
}
main.home section.hero .hero-right {
  position: relative;
}
@media (max-width: 968px) {
  main.home section.hero .hero-right {
    order: -1;
  }
}
main.home section.hero .hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}
main.home section.hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 500ms ease-in-out;
}
main.home section.hero .hero-image:hover img {
  transform: scale(1.05) rotate(2deg);
}
main.home section.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
main.home section.hero .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 1;
  animation: float 8s ease-in-out infinite;
  mix-blend-mode: overlay;
}
main.home section.hero .gradient-orb.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 220, 100, 0.9), rgba(255, 150, 100, 0.5), transparent);
  top: -20%;
  left: -20%;
  animation-delay: 0s;
}
main.home section.hero .gradient-orb.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 100, 150, 0.9), rgba(254, 172, 105, 0.6), transparent);
  bottom: -15%;
  right: -15%;
  animation-delay: 2s;
}
main.home section.hero .gradient-orb.orb-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 180, 200, 0.9), rgba(255, 200, 150, 0.5), transparent);
  top: 35%;
  left: 35%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
main.home section.hero .floating-shape {
  position: absolute;
  opacity: 0.7;
  filter: blur(70px);
  animation: floatSlow 15s ease-in-out infinite;
  mix-blend-mode: soft-light;
}
main.home section.hero .floating-shape.shape-1 {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.8), rgba(255, 180, 120, 0.4), transparent);
  top: -30%;
  right: -25%;
  animation-delay: 1s;
}
main.home section.hero .floating-shape.shape-2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 120, 180, 0.8), rgba(240, 128, 128, 0.5), transparent);
  bottom: -35%;
  left: -20%;
  animation-delay: 3s;
}
main.home section.hero .floating-shape.shape-3 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 150, 100, 0.8), rgba(254, 172, 105, 0.5), transparent);
  top: 15%;
  right: -15%;
  animation-delay: 6s;
}
main.home section.benefits {
  padding: 10rem 0;
  background: var(--white);
  position: relative;
}
main.home section.benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  main.home section.benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  main.home section.benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
main.home section.benefits .benefit-card {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(30px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
}
main.home section.benefits .benefit-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0;
  transition: all 800ms ease-in-out;
  animation: rotate 4s linear infinite paused;
}
main.home section.benefits .benefit-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  z-index: 1;
}
main.home section.benefits .benefit-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}
main.home section.benefits .benefit-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
main.home section.benefits .benefit-card:hover .benefit-icon {
  transform: translateY(-10px) scale(1.12) rotateY(10deg);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.5);
}
main.home section.benefits .benefit-card:hover .benefit-glow {
  opacity: 1;
  transform: scale(1.5);
}
main.home section.benefits .benefit-card:hover h3 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main.home section.benefits .benefit-card.primary .benefit-icon {
  background: linear-gradient(135deg, #ff6b9d, #ffa07a, #ff6b9d);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}
main.home section.benefits .benefit-card.primary .benefit-glow {
  background: radial-gradient(circle, rgba(255, 107, 157, 0.6), transparent);
}
main.home section.benefits .benefit-card.primary:hover::before {
  background: conic-gradient(from 0deg, transparent, #ff6b9d, #ffa07a, transparent);
}
main.home section.benefits .benefit-card.secondary .benefit-icon {
  background: linear-gradient(135deg, #ffa500, #ff6347, #ffa500);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}
main.home section.benefits .benefit-card.secondary .benefit-glow {
  background: radial-gradient(circle, rgba(255, 165, 0, 0.6), transparent);
}
main.home section.benefits .benefit-card.secondary:hover::before {
  background: conic-gradient(from 0deg, transparent, #ffa500, #ff6347, transparent);
}
main.home section.benefits .benefit-card .benefit-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0;
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
main.home section.benefits .benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}
main.home section.benefits .benefit-card .benefit-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  filter: blur(8px);
  opacity: 0.6;
}
main.home section.benefits .benefit-card .benefit-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
}
main.home section.benefits .benefit-card .benefit-icon i {
  font-size: 2.5rem;
  color: var(--white);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
main.home section.benefits .benefit-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.875rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: all 400ms ease-in-out;
}
main.home section.benefits .benefit-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
main.home section.network-value {
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 240, 245, 0.5));
  position: relative;
  overflow: hidden;
}
main.home section.network-value::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.15), transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  filter: blur(100px);
}
main.home section.network-value::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.15), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  filter: blur(100px);
}
main.home section.network-value .content {
  position: relative;
  z-index: 2;
}
main.home section.network-value .network-value-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  main.home section.network-value .network-value-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
main.home section.network-value .network-value-left .section-title {
  text-align: left;
  margin: 0 0 2.5rem;
}
main.home section.network-value .network-value-left .section-title::before {
  left: 0;
  transform: none;
}
main.home section.network-value .network-value-left .section-title h2 {
  font-size: 2.25rem;
  color: var(--text);
}
main.home section.network-value .network-value-left .section-title h2 strong {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 968px) {
  main.home section.network-value .network-value-left .section-title h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 640px) {
  main.home section.network-value .network-value-left .section-title h2 {
    font-size: 1.625rem;
  }
}
main.home section.network-value .network-value-left .network-value-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
@media (max-width: 640px) {
  main.home section.network-value .network-value-left .network-value-text p {
    font-size: 1.125rem;
  }
}
main.home section.network-value .network-value-left .network-value-text p:last-child {
  margin-bottom: 0;
}
main.home section.network-value .network-value-right {
  position: relative;
}
@media (max-width: 968px) {
  main.home section.network-value .network-value-right {
    order: -1;
  }
}
main.home section.network-value .network-value-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}
main.home section.network-value .network-value-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 165, 0, 0.2));
  border-radius: 30px;
  filter: blur(40px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}
main.home section.network-value .network-value-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 500ms ease-in-out;
}
main.home section.network-value .network-value-image:hover img {
  transform: scale(1.05) rotate(2deg);
}
main.home section.about {
  padding: 10rem 0;
  background: var(--white);
  position: relative;
}
main.home section.about .about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  main.home section.about .about-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
main.home section.about .about-left {
  position: relative;
}
main.home section.about .about-logo {
  margin-bottom: 2.5rem;
}
main.home section.about .about-logo img {
  max-width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  transition: transform 400ms ease;
}
@media (max-width: 640px) {
  main.home section.about .about-logo img {
    max-width: 220px;
  }
}
main.home section.about .about-logo:hover img {
  transform: scale(1.05);
}
main.home section.about .about-intro {
  margin-bottom: 3rem;
}
main.home section.about .about-intro p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-weight: 400;
}
main.home section.about .about-intro p strong {
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 640px) {
  main.home section.about .about-intro p {
    font-size: 1.25rem;
  }
}
main.home section.about .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 968px) {
  main.home section.about .about-grid {
    grid-template-columns: 1fr;
  }
}
main.home section.about .about-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  transition: all 400ms ease;
  border: 2px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
main.home section.about .about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--primary-rgb), 0.2);
}
main.home section.about .about-card:hover .about-card-icon {
  transform: scale(1.1);
}
main.home section.about .about-card .about-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 400ms ease;
}
main.home section.about .about-card .about-card-icon i {
  font-size: 1.75rem;
  color: var(--white);
}
main.home section.about .about-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.75rem;
}
main.home section.about .about-card p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
main.home section.about .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2.5rem 0 0;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 640px) {
  main.home section.about .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
main.home section.about .stat-item {
  text-align: center;
}
main.home section.about .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
  main.home section.about .stat-item .stat-number {
    font-size: 2.25rem;
  }
}
main.home section.about .stat-item .stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  main.home section.about .stat-item .stat-label {
    font-size: 0.875rem;
  }
}
@media (max-width: 1024px) {
  main.home section.about .about-cta {
    display: flex;
    justify-content: center;
  }
}
main.home section.about .about-cta .button {
  display: inline-flex;
}
main.home section.about .about-right {
  position: relative;
}
@media (max-width: 1024px) {
  main.home section.about .about-right {
    order: -1;
  }
}
main.home section.about .about-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}
main.home section.about .about-image::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 165, 0, 0.2));
  border-radius: 30px;
  filter: blur(50px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}
main.home section.about .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 500ms ease-in-out;
}
main.home section.about .about-image:hover img {
  transform: scale(1.05) rotate(2deg);
}
main.home section.products {
  position: relative;
  min-height: 90vh;
  padding: 10rem 0;
  overflow: hidden;
  transition: background 800ms ease-in-out;
}
main.home section.products[data-product=genialdoctors] {
  background: linear-gradient(135deg, #02a193 0%, #03c2b0 50%, #04e4cd 100%);
}
main.home section.products[data-product=genialdoctors] .gradient-orb.orb-1 {
  background: radial-gradient(circle, rgba(4, 228, 205, 0.9), rgba(3, 194, 176, 0.5), transparent);
}
main.home section.products[data-product=genialdoctors] .gradient-orb.orb-2 {
  background: radial-gradient(circle, rgba(2, 161, 147, 0.9), rgba(3, 194, 176, 0.6), transparent);
}
main.home section.products[data-product=genialdoctors] .gradient-orb.orb-3 {
  background: radial-gradient(circle, rgba(3, 194, 176, 0.9), rgba(4, 228, 205, 0.5), transparent);
}
main.home section.products[data-product=genialdoctors] .floating-shape.shape-1 {
  background: radial-gradient(circle, rgba(4, 228, 205, 0.8), rgba(3, 194, 176, 0.4), transparent);
}
main.home section.products[data-product=genialdoctors] .floating-shape.shape-2 {
  background: radial-gradient(circle, rgba(2, 161, 147, 0.8), rgba(3, 194, 176, 0.5), transparent);
}
main.home section.products[data-product=genialdoctors] .floating-shape.shape-3 {
  background: radial-gradient(circle, rgba(3, 194, 176, 0.8), rgba(4, 228, 205, 0.5), transparent);
}
main.home section.products[data-product=attornials] {
  background: linear-gradient(135deg, #f5631b 0%, #ff7935 50%, #ff8f4f 100%);
}
main.home section.products[data-product=attornials] .gradient-orb.orb-1 {
  background: radial-gradient(circle, rgba(255, 143, 79, 0.9), rgba(255, 121, 53, 0.5), transparent);
}
main.home section.products[data-product=attornials] .gradient-orb.orb-2 {
  background: radial-gradient(circle, rgba(245, 99, 27, 0.9), rgba(255, 121, 53, 0.6), transparent);
}
main.home section.products[data-product=attornials] .gradient-orb.orb-3 {
  background: radial-gradient(circle, rgba(255, 121, 53, 0.9), rgba(255, 143, 79, 0.5), transparent);
}
main.home section.products[data-product=attornials] .floating-shape.shape-1 {
  background: radial-gradient(circle, rgba(255, 143, 79, 0.8), rgba(255, 121, 53, 0.4), transparent);
}
main.home section.products[data-product=attornials] .floating-shape.shape-2 {
  background: radial-gradient(circle, rgba(245, 99, 27, 0.8), rgba(255, 121, 53, 0.5), transparent);
}
main.home section.products[data-product=attornials] .floating-shape.shape-3 {
  background: radial-gradient(circle, rgba(255, 121, 53, 0.8), rgba(255, 143, 79, 0.5), transparent);
}
main.home section.products[data-product=brandents] {
  background: linear-gradient(135deg, #256eb4 0%, #2e85d9 50%, #379cff 100%);
}
main.home section.products[data-product=brandents] .gradient-orb.orb-1 {
  background: radial-gradient(circle, rgba(55, 156, 255, 0.9), rgba(46, 133, 217, 0.5), transparent);
}
main.home section.products[data-product=brandents] .gradient-orb.orb-2 {
  background: radial-gradient(circle, rgba(37, 110, 180, 0.9), rgba(46, 133, 217, 0.6), transparent);
}
main.home section.products[data-product=brandents] .gradient-orb.orb-3 {
  background: radial-gradient(circle, rgba(46, 133, 217, 0.9), rgba(55, 156, 255, 0.5), transparent);
}
main.home section.products[data-product=brandents] .floating-shape.shape-1 {
  background: radial-gradient(circle, rgba(55, 156, 255, 0.8), rgba(46, 133, 217, 0.4), transparent);
}
main.home section.products[data-product=brandents] .floating-shape.shape-2 {
  background: radial-gradient(circle, rgba(37, 110, 180, 0.8), rgba(46, 133, 217, 0.5), transparent);
}
main.home section.products[data-product=brandents] .floating-shape.shape-3 {
  background: radial-gradient(circle, rgba(46, 133, 217, 0.8), rgba(55, 156, 255, 0.5), transparent);
}
main.home section.products .products-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
main.home section.products .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 1;
  animation: float 8s ease-in-out infinite;
  mix-blend-mode: overlay;
  transition: background 800ms ease-in-out;
}
main.home section.products .gradient-orb.orb-1 {
  width: 700px;
  height: 700px;
  top: -20%;
  left: -20%;
  animation-delay: 0s;
}
main.home section.products .gradient-orb.orb-2 {
  width: 600px;
  height: 600px;
  bottom: -15%;
  right: -15%;
  animation-delay: 2s;
}
main.home section.products .gradient-orb.orb-3 {
  width: 550px;
  height: 550px;
  top: 35%;
  left: 35%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
main.home section.products .floating-shape {
  position: absolute;
  opacity: 0.7;
  filter: blur(70px);
  animation: floatSlow 15s ease-in-out infinite;
  mix-blend-mode: soft-light;
  transition: background 800ms ease-in-out;
}
main.home section.products .floating-shape.shape-1 {
  width: 1000px;
  height: 1000px;
  top: -30%;
  right: -25%;
  animation-delay: 1s;
}
main.home section.products .floating-shape.shape-2 {
  width: 900px;
  height: 900px;
  bottom: -35%;
  left: -20%;
  animation-delay: 3s;
}
main.home section.products .floating-shape.shape-3 {
  width: 800px;
  height: 800px;
  top: 15%;
  right: -15%;
  animation-delay: 6s;
}
main.home section.products .content {
  position: relative;
  z-index: 2;
}
main.home section.products .section-title h2 {
  color: var(--white);
}
main.home section.products .section-title::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}
main.home section.products .products-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0 0 4rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  main.home section.products .products-tabs {
    gap: 0.5rem;
  }
}
main.home section.products .product-tab {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
main.home section.products .product-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 300ms ease;
}
main.home section.products .product-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}
main.home section.products .product-tab:hover::before {
  opacity: 1;
}
main.home section.products .product-tab.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
main.home section.products .product-tab.active::before {
  opacity: 0;
}
@media (max-width: 640px) {
  main.home section.products .product-tab {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}
main.home section.products .products-content {
  position: relative;
}
main.home section.products .product-panel {
  display: none;
  opacity: 0;
  animation: fadeInUp 600ms ease forwards;
}
main.home section.products .product-panel.active {
  display: block;
}
main.home section.products .product-info-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
main.home section.products .product-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
@media (max-width: 640px) {
  main.home section.products .product-info {
    padding: 2rem 1.5rem;
  }
}
main.home section.products .product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
main.home section.products .product-logo img {
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 400ms ease;
}
@media (max-width: 640px) {
  main.home section.products .product-logo img {
    max-width: 160px;
  }
}
main.home section.products .product-logo:hover img {
  transform: scale(1.05);
}
main.home section.products .product-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
main.home section.products .product-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 640px) {
  main.home section.products .product-description p {
    font-size: 1rem;
  }
}
main.home section.products .info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 300ms ease;
}
main.home section.products .info-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateX(8px);
}
main.home section.products .info-item.highlight {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
  border: 2px solid rgba(var(--primary-rgb), 0.3);
}
main.home section.products .info-item.highlight .info-value {
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main.home section.products .info-item i {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
main.home section.products .info-item .info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
main.home section.products .info-item .info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
main.home section.products .info-item .info-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}
main.home section.products .info-opportunity {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}
main.home section.products .info-opportunity h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 1rem;
}
main.home section.products .info-opportunity ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
main.home section.products .info-opportunity ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
main.home section.products .info-opportunity ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
main.home section.products .info-opportunity ul li:last-child {
  margin-bottom: 0;
}
main.home section.products .product-buttons {
  display: flex;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 640px) {
  main.home section.products .product-buttons {
    flex-direction: column;
  }
}
main.home section.products .product-buttons .button {
  flex: 1;
  justify-content: center;
}
main.home section.faq {
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 240, 245, 0.5));
  position: relative;
  overflow: hidden;
}
main.home section.faq::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 128, 128, 0.1), transparent);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  filter: blur(100px);
}
main.home section.faq::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 172, 105, 0.1), transparent);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  filter: blur(100px);
}
main.home section.faq .content {
  position: relative;
  z-index: 2;
}
main.home section.faq .faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
main.home section.faq .faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(30px);
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
main.home section.faq .faq-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0;
  transition: all 800ms ease-in-out;
  animation: rotate 4s linear infinite paused;
  z-index: 0;
}
main.home section.faq .faq-item::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  z-index: 1;
}
main.home section.faq .faq-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}
main.home section.faq .faq-item:hover::before {
  opacity: 1;
  animation-play-state: running;
}
main.home section.faq .faq-item.active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
main.home section.faq .faq-item.active::before {
  opacity: 1;
  animation-play-state: running;
}
main.home section.faq .faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
}
main.home section.faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}
main.home section.faq .faq-question {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  transition: all 400ms ease;
  background: transparent;
  position: relative;
  z-index: 2;
}
main.home section.faq .faq-question h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 640px) {
  main.home section.faq .faq-question h3 {
    font-size: 1.125rem;
  }
}
main.home section.faq .faq-question i {
  font-size: 1.5rem;
  color: var(--text);
  transition: all 400ms ease;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  main.home section.faq .faq-question {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }
}
main.home section.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  will-change: max-height;
}
main.home section.faq .faq-answer p {
  padding: 1rem 2rem 1.75rem;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 640px) {
  main.home section.faq .faq-answer p {
    padding: 0.75rem 1.5rem 1.5rem;
    font-size: 1rem;
  }
}
main.home section.testimonials {
  padding: 10rem 0;
  background: var(--white);
  position: relative;
}
main.home section.testimonials .testimonials-slider-wrapper {
  position: relative;
  padding: 0 3rem;
}
@media (max-width: 640px) {
  main.home section.testimonials .testimonials-slider-wrapper {
    padding: 0 2.5rem;
  }
}
main.home section.testimonials .testimonials-slider {
  overflow: hidden;
  padding: 3rem;
}
main.home section.testimonials .testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
main.home section.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0;
  transition: all 800ms ease-in-out;
  animation: rotate 4s linear infinite paused;
  z-index: 0;
}
main.home section.testimonials .testimonial-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  z-index: 1;
}
main.home section.testimonials .testimonial-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}
main.home section.testimonials .testimonial-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
main.home section.testimonials .testimonial-card:hover .testimonial-avatar {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}
main.home section.testimonials .testimonial-card:hover .testimonial-rating i {
  transform: scale(1.1);
}
@media (max-width: 640px) {
  main.home section.testimonials .testimonial-card {
    padding: 2rem;
  }
}
main.home section.testimonials .testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
main.home section.testimonials .testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ffa07a, #ff6b9d);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  position: relative;
}
main.home section.testimonials .testimonial-avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  filter: blur(8px);
  opacity: 0.6;
}
main.home section.testimonials .testimonial-avatar i {
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
main.home section.testimonials .testimonial-author h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.25rem;
}
main.home section.testimonials .testimonial-author p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
main.home section.testimonials .testimonial-rating {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
main.home section.testimonials .testimonial-rating i {
  font-size: 1.125rem;
  color: #ffa500;
  transition: transform 300ms ease;
  filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.3));
}
main.home section.testimonials .testimonial-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
main.home section.testimonials .testimonial-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
main.home section.testimonials .testimonial-content p::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}
@media (max-width: 640px) {
  main.home section.testimonials .testimonial-content p {
    font-size: 1rem;
  }
}
main.home section.testimonials .swiper-button-prev,
main.home section.testimonials .swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  border: 2px solid rgba(0, 0, 0, 0.08);
}
main.home section.testimonials .swiper-button-prev::after,
main.home section.testimonials .swiper-button-next::after {
  display: none;
}
main.home section.testimonials .swiper-button-prev i,
main.home section.testimonials .swiper-button-next i {
  font-size: 1.5rem;
  color: var(--black);
  transition: color 300ms ease;
}
main.home section.testimonials .swiper-button-prev:hover,
main.home section.testimonials .swiper-button-next:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
  border-color: transparent;
}
main.home section.testimonials .swiper-button-prev:hover i,
main.home section.testimonials .swiper-button-next:hover i {
  color: var(--white);
}
@media (max-width: 640px) {
  main.home section.testimonials .swiper-button-prev,
  main.home section.testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  main.home section.testimonials .swiper-button-prev i,
  main.home section.testimonials .swiper-button-next i {
    font-size: 1.25rem;
  }
}
main.home section.testimonials .swiper-button-prev {
  left: 0;
}
main.home section.testimonials .swiper-button-next {
  right: 0;
}
main.home section.testimonials .swiper-pagination {
  position: relative;
  margin-top: 3rem;
}
main.home section.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 300ms ease;
}
main.home section.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 32px;
  border-radius: 6px;
}

main.subscription-page section.subscription-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #fa9a9a 50%, var(--secondary) 100%);
}
main.subscription-page section.subscription-hero .content {
  position: relative;
  z-index: 2;
}
main.subscription-page section.subscription-hero .subscription-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
main.subscription-page section.subscription-hero .subscription-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
main.subscription-page section.subscription-hero .subscription-hero-content h1 strong {
  font-weight: 800;
  font-size: 0.85em;
}
main.subscription-page section.subscription-hero .subscription-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
main.subscription-page section.subscription-hero .subscription-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
main.subscription-page section.subscription-hero .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 1;
  animation: float 8s ease-in-out infinite;
  mix-blend-mode: overlay;
}
main.subscription-page section.subscription-hero .gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  top: -100px;
  right: 10%;
}
main.subscription-page section.subscription-hero .gradient-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.4), transparent);
  bottom: -50px;
  left: 15%;
  animation-delay: -2s;
}
main.subscription-page section.subscription-hero .gradient-orb.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.3), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}
main.subscription-page section.subscription-hero .floating-shape {
  position: absolute;
  opacity: 0.7;
  filter: blur(70px);
  animation: floatSlow 15s ease-in-out infinite;
  mix-blend-mode: soft-light;
}
main.subscription-page section.subscription-hero .floating-shape.shape-1 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, rgba(255, 107, 157, 0.5), rgba(255, 192, 203, 0.3));
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  top: 20%;
  left: 5%;
}
main.subscription-page section.subscription-hero .floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.4), rgba(255, 140, 0, 0.3));
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  bottom: 15%;
  right: 10%;
  animation-delay: -5s;
}
main.subscription-page section.subscription-hero .floating-shape.shape-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(225deg, rgba(255, 192, 203, 0.5), rgba(255, 160, 122, 0.3));
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  top: 60%;
  right: 20%;
  animation-delay: -10s;
}
main.subscription-page section.subscription-form-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, rgba(255, 240, 245, 0.3), var(--white));
  position: relative;
}
main.subscription-page .subscription-form {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main.subscription-page .subscription-form {
    padding: 0;
  }
}
main.subscription-page .subscription-form .form-alert {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
}
main.subscription-page .subscription-form .form-alert::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
}
main.subscription-page .subscription-form .form-alert.success {
  background: rgba(56, 142, 60, 0.12);
  border-color: rgba(56, 142, 60, 0.35);
  color: #2e7d32;
}
main.subscription-page .subscription-form .form-alert.success::before {
  background: #43a047;
}
main.subscription-page .subscription-form .form-alert.error {
  background: rgba(229, 57, 53, 0.12);
  border-color: rgba(229, 57, 53, 0.4);
  color: #c62828;
}
main.subscription-page .subscription-form .form-alert.error::before {
  background: #ef5350;
}
main.subscription-page .subscription-form .form-alert.compact {
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
  margin: 1rem 0 0;
  box-shadow: none;
}
main.subscription-page .form-section {
  margin-bottom: 4rem;
}
main.subscription-page .form-section:last-of-type {
  margin-bottom: 0;
}
main.subscription-page .form-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(240, 128, 128, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
main.subscription-page .form-section-title i {
  font-size: 1.5rem;
  color: var(--primary);
}
main.subscription-page .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
main.subscription-page .form-row:last-child {
  margin-bottom: 0;
}
main.subscription-page .form-row.single {
  grid-template-columns: 1fr;
}
main.subscription-page .form-row.triple {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 968px) {
  main.subscription-page .form-row.triple {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  main.subscription-page .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
main.subscription-page .form-group {
  position: relative;
}
main.subscription-page .form-group label {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  font-size: 1.125rem;
  color: var(--text);
  pointer-events: none;
  transition: all 300ms ease;
  background: var(--white);
  padding: 0 0.75rem;
}
main.subscription-page .form-group input,
main.subscription-page .form-group select {
  width: 100%;
  padding: 1.5rem 1.5rem;
  font-size: 1.125rem;
  color: var(--black);
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  outline: none;
  transition: all 300ms ease;
  font-family: var(--font-family);
}
main.subscription-page .form-group input:focus,
main.subscription-page .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(240, 128, 128, 0.1);
}
main.subscription-page .form-group input:focus + label, main.subscription-page .form-group input:not(:placeholder-shown) + label, main.subscription-page .form-group input:valid + label,
main.subscription-page .form-group select:focus + label,
main.subscription-page .form-group select:not(:placeholder-shown) + label,
main.subscription-page .form-group select:valid + label {
  top: 0;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}
main.subscription-page .form-group input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f08080'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5C3.9 4 3 4.9 3 6v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E");
  background-size: 20px;
  width: 20px;
  height: 20px;
}
main.subscription-page .form-group input[type=date] + label {
  top: 0;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}
main.subscription-page .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}
main.subscription-page .form-group select:focus + label, main.subscription-page .form-group select:not([value=""]) + label {
  top: 0;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}
main.subscription-page .form-group .input-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text);
  font-size: 1.25rem;
  pointer-events: none;
}
main.subscription-page .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 968px) {
  main.subscription-page .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  main.subscription-page .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
main.subscription-page .checkbox-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
main.subscription-page .checkbox-card input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
main.subscription-page .checkbox-card input[type=checkbox]:checked ~ .checkbox-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
}
main.subscription-page .checkbox-card input[type=checkbox]:checked ~ .checkbox-custom::after {
  opacity: 1;
  transform: rotate(45deg);
}
main.subscription-page .checkbox-card input[type=checkbox]:checked ~ .checkbox-label {
  color: var(--primary);
  font-weight: 700;
}
main.subscription-page .checkbox-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(240, 128, 128, 0.2);
  border-color: rgba(240, 128, 128, 0.3);
}
main.subscription-page .checkbox-card .checkbox-custom {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: all 300ms ease;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
main.subscription-page .checkbox-card .checkbox-custom::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
main.subscription-page .checkbox-card .checkbox-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  transition: all 300ms ease;
}
main.subscription-page .checkbox-card .checkbox-label i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}
main.subscription-page .other-input-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  margin-top: 0;
}
main.subscription-page .other-input-wrapper.active {
  max-height: 120px;
  opacity: 1;
  margin-top: 1rem;
  overflow: visible;
}
main.subscription-page .radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  main.subscription-page .radio-grid {
    grid-template-columns: 1fr;
  }
}
main.subscription-page .radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(30px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
main.subscription-page .radio-card input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
main.subscription-page .radio-card input[type=radio]:checked ~ .radio-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
}
main.subscription-page .radio-card input[type=radio]:checked ~ .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}
main.subscription-page .radio-card input[type=radio]:checked ~ .radio-label .radio-number {
  color: var(--primary);
  transform: scale(1.1);
}
main.subscription-page .radio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(240, 128, 128, 0.25);
  border-color: rgba(240, 128, 128, 0.4);
}
main.subscription-page .radio-card .radio-custom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 300ms ease;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
main.subscription-page .radio-card .radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
main.subscription-page .radio-card .radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
main.subscription-page .radio-card .radio-label .radio-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main.subscription-page .radio-card .radio-label .radio-desc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
main.subscription-page .terms-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
main.subscription-page .terms-group.has-error {
  border-radius: 16px;
  padding: 1.25rem;
  background: rgba(229, 57, 53, 0.04);
  border: 1px solid rgba(229, 57, 53, 0.35);
}
main.subscription-page .terms-group.has-error .checkbox-terms {
  border-color: rgba(229, 57, 53, 0.4);
}
main.subscription-page .checkbox-terms {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1.5rem;
  background: rgba(240, 128, 128, 0.05);
  border: 2px solid rgba(240, 128, 128, 0.1);
  border-radius: 12px;
  transition: all 300ms ease;
}
main.subscription-page .checkbox-terms:hover {
  background: rgba(240, 128, 128, 0.08);
  border-color: rgba(240, 128, 128, 0.2);
}
main.subscription-page .checkbox-terms input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
main.subscription-page .checkbox-terms input[type=checkbox]:checked ~ .checkbox-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
}
main.subscription-page .checkbox-terms input[type=checkbox]:checked ~ .checkbox-custom::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
main.subscription-page .checkbox-terms .checkbox-custom {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  transition: all 300ms ease;
  background: var(--white);
  margin-top: 0.125rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.subscription-page .checkbox-terms .checkbox-custom::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
main.subscription-page .checkbox-terms .checkbox-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
}
main.subscription-page .checkbox-terms .checkbox-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 300ms ease;
}
main.subscription-page .checkbox-terms .checkbox-text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
main.subscription-page .form-submit {
  margin-top: 3rem;
  text-align: center;
}
main.subscription-page .form-submit .button {
  min-width: 300px;
  font-size: 1.125rem;
  padding: 1.5rem 3rem;
  box-shadow: 0 10px 30px rgba(240, 128, 128, 0.3);
}
main.subscription-page .form-submit .button:hover {
  box-shadow: 0 15px 40px rgba(240, 128, 128, 0.4);
}
@media (max-width: 480px) {
  main.subscription-page .form-submit .button {
    min-width: 100%;
  }
}

/*# sourceMappingURL=base.css.map */
