* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
html {
    scroll-behavior: smooth;
}
/**/
:root {
    --pr-color-primary: #4A6FDC;
    --pr-color-primary-hover: rgba(74, 111, 220, 0.85);
    --pr-color-primary-light: rgba(74, 111, 220, 0.15);

    --pr-color-secondary: #6B4FA0;
    --pr-color-secondary-hover: rgba(107, 79, 160, 0.85);
    --pr-color-secondary-light: rgba(107, 79, 160, 0.15);

    --pr-color-gold: #FFD700;
    --pr-color-gold-hover: rgba(255, 215, 0, 0.85);
    --pr-color-gold-light: rgba(255, 215, 0, 0.15);

    --pr-color-festive: #DC3545;
    --pr-color-festive-hover: rgba(220, 53, 69, 0.85);
    --pr-color-festive-light: rgba(220, 53, 69, 0.15);

    --pr-color-pine: #2D8B57;
    --pr-color-pine-hover: rgba(45, 139, 87, 0.85);
    --pr-color-pine-light: rgba(45, 139, 87, 0.15);

    --pr-color-snow: #F8F9FA;
    --pr-color-snow-hover: rgba(248, 249, 250, 0.85);

    --pr-color-navy: #1E2A3A;
    --pr-color-navy-hover: rgba(30, 42, 58, 0.85);
    --pr-color-navy-light: rgba(30, 42, 58, 0.15);

    --pr-font-heading: 'Fredoka', sans-serif;
    --pr-font-body: 'Karla', sans-serif;

    --pr-fw-regular: 400;
    --pr-fw-medium: 500;
    --pr-fw-semibold: 600;
    --pr-fw-bold: 700;

    --pr-fs-h1: 3.5rem;
    --pr-fs-h2: 2.75rem;
    --pr-fs-h3: 2.125rem;
    --pr-fs-h4: 1.5rem;
    --pr-fs-subtitle: 1.25rem;
    --pr-fs-body: 1rem;
    --pr-fs-small: 0.875rem;

    --pr-spacing-xs: 0.5rem;
    --pr-spacing-sm: 1rem;
    --pr-spacing-md: 2rem;
    --pr-spacing-lg: 3rem;
    --pr-spacing-xl: 5rem;

    --pr-container-max: 1200px;
    --pr-container-padding: 2rem;

    --pr-radius-sm: 0.5rem;
    --pr-radius-md: 1rem;
    --pr-radius-lg: 1.5rem;
    --pr-radius-full: 9999px;

    --pr-transition-fast: 0.2s ease;
    --pr-transition-normal: 0.3s ease;
    --pr-transition-slow: 0.5s ease;
}

body {
    font-family: var(--pr-font-body);
    font-weight: var(--pr-fw-regular);
    font-size: var(--pr-fs-body);
    line-height: 1.6;
    color: var(--pr-color-navy);
    background-color: var(--pr-color-snow);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pr-container {
    max-width: var(--pr-container-max);
    margin: 0 auto;
    padding: 0 var(--pr-container-padding);
}

.pr-container--wide {
    max-width: 1400px;
}

.pr-container--narrow {
    max-width: 900px;
}
.pr-heading {
    font-family: var(--pr-font-heading);
    font-weight: var(--pr-fw-bold);
    line-height: 1.2;
    margin-bottom: var(--pr-spacing-sm);
    color: var(--pr-color-navy);
}

.pr-heading--h1 {
    font-size: var(--pr-fs-h1);
}

.pr-heading--h2 {
    font-size: var(--pr-fs-h2);
}

.pr-heading--h3 {
    font-size: var(--pr-fs-h3);
}

.pr-heading--h4 {
    font-size: var(--pr-fs-h4);
}

.pr-heading--gold {
    color: var(--pr-color-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pr-heading--gradient {
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr-subtitle {
    font-family: var(--pr-font-body);
    font-size: var(--pr-fs-subtitle);
    font-weight: var(--pr-fw-semibold);
    color: var(--pr-color-secondary);
    margin-bottom: var(--pr-spacing-xs);
}

.pr-text {
    font-size: var(--pr-fs-body);
    line-height: 1.7;
    color: var(--pr-color-navy);
}

.pr-text--large {
    font-size: 1.125rem;
}

.pr-text--small {
    font-size: var(--pr-fs-small);
}

.pr-text--semibold {
    font-weight: var(--pr-fw-semibold);
}
.pr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--pr-spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--pr-font-heading);
    font-size: var(--pr-fs-body);
    font-weight: var(--pr-fw-medium);
    text-decoration: none;
    border: none;
    border-radius: var(--pr-radius-full);
    cursor: pointer;
    transition: all var(--pr-transition-normal);
    text-align: center;
}

.pr-btn--primary {
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 111, 220, 0.3);
}

.pr-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 111, 220, 0.4);
}

.pr-btn--gold {
    background: linear-gradient(135deg, var(--pr-color-gold), #FFA500);
    color: var(--pr-color-navy);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.pr-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.pr-btn--festive {
    background: linear-gradient(135deg, var(--pr-color-festive), #C82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.pr-btn--festive:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.pr-btn--outline {
    background: transparent;
    color: var(--pr-color-gold);
    border: 2px solid var(--pr-color-gold);
}

.pr-btn--outline:hover {
    background: var(--pr-color-gold);
    color: black;
    transform: translateY(-2px);
}

.pr-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.pr-btn--small {
    padding: 0.75rem 1.5rem;
    font-size: var(--pr-fs-small);
}
.pr-section {
    padding: var(--pr-spacing-xl) 0;
}

.pr-section--hero {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.pr-card {
    background: white;
    border-radius: var(--pr-radius-lg);
    padding: var(--pr-spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--pr-transition-normal);
}

.pr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pr-card--bordered {
    border: 2px solid var(--pr-color-primary-light);
}

.pr-card--gradient {
    background: linear-gradient(135deg, var(--pr-color-primary-light), var(--pr-color-secondary-light));
}
/**/
.pr-header {
    position: relative;
    background: rgba(30, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.pr-header__wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.pr-header__logo {
    display: flex;
    align-items: center;
}

.pr-header__logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--pr-transition-normal);
}

.pr-header__logo:hover .pr-header__logo-img {
    transform: scale(1.05);
}

.pr-header__nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.pr-header__link {
    font-family: var(--pr-font-heading);
    font-size: var(--pr-fs-body);
    font-weight: var(--pr-fw-medium);
    color: var(--pr-color-snow);
    text-decoration: none;
    transition: color var(--pr-transition-fast) scale var(--pr-transition-fast);
}

.pr-header__link:hover {
    color: var(--pr-color-gold);
    transform: scale(1.1);
}

.pr-header__link:hover::after {
    width: 100%;
}

.pr-header__actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.pr-header__cta {
    white-space: nowrap;
}

.pr-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.pr-header__burger-line {
    width: 25px;
    height: 3px;
    background: var(--pr-color-gold);
    border-radius: 2px;
    transition: all var(--pr-transition-normal);
}

/* Mobile Menu */
.pr-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pr-transition-normal);
    overflow: hidden;
}

.pr-mobile-menu--active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.pr-mobile-menu__content {
    position: relative;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--pr-color-navy), var(--pr-color-secondary));
    margin-left: auto;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--pr-transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.pr-mobile-menu--active .pr-mobile-menu__content {
    transform: translateX(0);
}

.pr-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--pr-color-gold);
}

.pr-mobile-menu__logo {
    height: 40px;
    width: auto;
}

.pr-mobile-menu__close {
    background: none;
    border: none;
    color: var(--pr-color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform var(--pr-transition-fast);
}

.pr-mobile-menu__close:hover {
    transform: rotate(90deg);
}

.pr-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.pr-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-family: var(--pr-font-heading);
    font-size: 1.125rem;
    font-weight: var(--pr-fw-medium);
    color: var(--pr-color-snow);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--pr-radius-md);
    transition: all var(--pr-transition-normal);
}

.pr-mobile-menu__link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--pr-color-gold);
    transform: translateX(5px);
}

.pr-mobile-menu__link i {
    font-size: 1.25rem;
}

.pr-mobile-menu__footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}
/**/
.pr-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pr-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: blur(2px) brightness(0.9);
    transform: scale(1.01);
}

.pr-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(74, 111, 220, 0.3),
            rgba(107, 79, 160, 0.4)
    );
    z-index: -1;
}

.pr-hero__snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pr-hero__snowflake {
    position: absolute;
    top: -10%;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: snowfall linear infinite;
}

.pr-hero__snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.pr-hero__snowflake:nth-child(2) {
    left: 30%;
    width: 8px;
    height: 8px;
    animation-duration: 10s;
    animation-delay: 2s;
}

.pr-hero__snowflake:nth-child(3) {
    left: 50%;
    width: 12px;
    height: 12px;
    animation-duration: 7s;
    animation-delay: 4s;
}

.pr-hero__snowflake:nth-child(4) {
    left: 70%;
    width: 9px;
    height: 9px;
    animation-duration: 9s;
    animation-delay: 1s;
}

.pr-hero__snowflake:nth-child(5) {
    left: 85%;
    width: 11px;
    height: 11px;
    animation-duration: 11s;
    animation-delay: 3s;
}

.pr-hero__snowflake:nth-child(6) {
    left: 15%;
    width: 7px;
    height: 7px;
    animation-duration: 12s;
    animation-delay: 5s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.pr-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.pr-hero__title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.pr-hero__subtitle {
    font-size: 1.25rem;
    color: var(--pr-color-snow);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.pr-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.pr-hero__btn {
    min-width: 200px;
}

.pr-hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.pr-hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--pr-radius-full);
    color: white;
    font-family: var(--pr-font-heading);
    font-size: var(--pr-fs-small);
    font-weight: var(--pr-fw-medium);
}

.pr-hero__badge i {
    color: var(--pr-color-gold);
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/**/
.pr-journey {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
}

.pr-journey__title {
    text-align: center;
    margin-bottom: 1rem;
}

.pr-journey__subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.pr-journey__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.pr-journey__line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(
            90deg,
            var(--pr-color-primary),
            var(--pr-color-secondary),
            var(--pr-color-gold)
    );
    border-radius: var(--pr-radius-full);
    transform: translateY(-50%);
}

.pr-journey__line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--pr-color-gold);
    border-radius: var(--pr-radius-full);
    transition: width 2s ease-out;
    box-shadow: 0 0 20px var(--pr-color-gold);
}

.pr-journey__milestone {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.pr-journey__milestone[data-step="1"] {
    left: 10%;
}

.pr-journey__milestone[data-step="2"] {
    left: 36.67%;
}

.pr-journey__milestone[data-step="3"] {
    left: 63.33%;
}

.pr-journey__milestone[data-step="4"] {
    left: 90%;
}

.pr-journey__milestone-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(74, 111, 220, 0.4);
    transition: all var(--pr-transition-normal);
    border: 4px solid white;
    position: relative;
    z-index: 2;
}

.pr-journey__milestone:hover .pr-journey__milestone-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.pr-journey__milestone-tooltip {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--pr-radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all var(--pr-transition-normal);
    z-index: 10;
}

.pr-journey__milestone-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: white;
}

.pr-journey__milestone:hover .pr-journey__milestone-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 25px);
}

.pr-journey__milestone-tooltip h4 {
    color: var(--pr-color-primary);
    margin-bottom: 0.5rem;
}
/**/
.pr-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--pr-color-snow), white);
}

.pr-showcase__title {
    text-align: center;
    margin-bottom: 1rem;
}

.pr-showcase__subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.pr-showcase__wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-showcase__screen {
    position: relative;
    width: 100%;
    max-width: 700px;
    z-index: 2;
}

.pr-showcase__screen-img {
    width: 100%;
    height: auto;
    border-radius: var(--pr-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--pr-transition-slow);
}

.pr-showcase__screen:hover .pr-showcase__screen-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.pr-showcase__screen-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(
            circle,
            rgba(255, 215, 0, 0.3),
            transparent 70%
    );
    border-radius: var(--pr-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--pr-transition-normal);
}

.pr-showcase__screen:hover .pr-showcase__screen-glow {
    opacity: 1;
}

.pr-showcase__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.95);
    color: var(--pr-color-navy);
    text-decoration: none;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    justify-content: center;
    font-family: var(--pr-font-heading);
    font-weight: var(--pr-fw-bold);
    font-size: var(--pr-fs-small);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    transition: all var(--pr-transition-normal);
    opacity: 0;
}

.pr-showcase__screen:hover .pr-showcase__play-btn {
    opacity: 1;
}

.pr-showcase__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.pr-showcase__play-btn i {
    font-size: 2.5rem;
}

.pr-showcase__feature {
    position: absolute;
    width: 240px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--pr-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all var(--pr-transition-normal);
    background-image: url('../assets/img/feature-card-bg.webp');
    background-size: cover;
}

.pr-showcase__feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pr-showcase__feature--top-left {
    top: 50px;
    left: 0;
}

.pr-showcase__feature--top-right {
    top: 50px;
    right: 0;
}

.pr-showcase__feature--bottom-left {
    bottom: 50px;
    left: 0;
}

.pr-showcase__feature--bottom-right {
    bottom: 50px;
    right: 0;
}

.pr-showcase__feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(74, 111, 220, 0.3);
}

.pr-showcase__feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--pr-color-primary);
}
/**/
.pr-wonders {
    padding: 6rem 0;
    background: var(--pr-color-navy-light);
}

.pr-wonders__title {
    text-align: center;
    margin-bottom: 1rem;
}

.pr-wonders__subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.pr-wonders__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pr-wonders__card {
    text-align: center;
    padding: 2rem;
    background: var(--pr-color-snow);
    border-radius: var(--pr-radius-lg);
    transition: all var(--pr-transition-normal);
}

.pr-wonders__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pr-wonders__card-icon {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-wonders__icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.pr-wonders__card-icon i {
    font-size: 3rem;
    color: var(--pr-color-primary);
    position: relative;
    z-index: 2;
    transition: all var(--pr-transition-normal);
}

.pr-wonders__card:hover .pr-wonders__card-icon i {
    color: var(--pr-color-pine-hover);
    transform: scale(1.1);
}

.pr-wonders__card-title {
    font-size: var(--pr-fs-h4);
    margin-bottom: 1rem;
    color: var(--pr-color-primary);
}

.pr-wonders__card-text {
    line-height: 1.7;
    color: var(--pr-color-navy);
}
/**/
.pr-features {
    padding: 6rem 0;
    background: linear-gradient(180deg, white, var(--pr-color-snow));
}

.pr-features__title {
    text-align: center;
    margin-bottom: 1rem;
}

.pr-features__subtitle {
    text-align: center;
    margin-bottom: 5rem;
}

.pr-features__list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.pr-features__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pr-features__item--right {
    direction: rtl;
}

.pr-features__item--right > * {
    direction: ltr;
}

.pr-features__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-features__icon-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: transform var(--pr-transition-slow);
}

.pr-features__item:hover .pr-features__icon-img {
    transform: scale(1.05);
}

.pr-features__item-content {
    padding: 2rem;
}

.pr-features__item-title {
    font-size: var(--pr-fs-h3);
    margin-bottom: 1.5rem;
    color: var(--pr-color-primary);
}

.pr-features__item-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.pr-features__item-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pr-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pr-color-primary-light);
    color: var(--pr-color-primary);
    border-radius: var(--pr-radius-full);
    font-size: var(--pr-fs-small);
    font-family: var(--pr-font-heading);
    font-weight: var(--pr-fw-medium);
    transition: all var(--pr-transition-fast);
}

.pr-features__badge:hover {
    background: var(--pr-color-primary);
    color: white;
}

.pr-features__badge i {
    font-size: 0.875rem;
}
/**/
.pr-guide {
    position: relative;
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.pr-guide__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    filter: blur(6px);
    transform: scale(1.01);
    z-index: 0;
    pointer-events: none;
}

.pr-guide__bg-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-guide__title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
        color: white;
}

.pr-guide__subtitle {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
        color: white;
}

.pr-guide__path {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pr-guide__step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.pr-guide__step:nth-child(even) {
    flex-direction: row-reverse;
}

.pr-guide__step:nth-child(even) .pr-guide__step-card {
    margin-left: 0;
    margin-right: 2rem;
}

.pr-guide__step:nth-child(odd) .pr-guide__step-card {
    margin-right: 0;
    margin-left: 2rem;
}

.pr-guide__step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pr-font-heading);
    font-size: 2.5rem;
    font-weight: var(--pr-fw-bold);
    box-shadow: 0 10px 30px rgba(74, 111, 220, 0.3);
    border: 4px solid white;
    position: relative;
    z-index: 2;
}

.pr-guide__step-card {
    flex: 1;
    background: var(--pr-color-snow);
    padding: 2rem;
    border-radius: var(--pr-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--pr-transition-normal);
}

.pr-guide__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pr-guide__step-icon {
    width: 60px;
    height: 60px;
    background: var(--pr-color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pr-guide__step-icon i {
    font-size: 1.75rem;
    color: var(--pr-color-gold);
}

.pr-guide__step-title {
    margin-bottom: 1rem;
    color: var(--pr-color-primary);
}

.pr-guide__step-text {
    line-height: 1.7;
    color: var(--pr-color-navy);
}
/**/
.pr-questions {
    padding: 6rem 0;
    background: linear-gradient(180deg, white, var(--pr-color-snow));
}

.pr-questions__title {
    text-align: center;
    margin-bottom: 1rem;
}

.pr-questions__subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.pr-questions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pr-questions__card {
    position: relative;
    height: 280px;
    cursor: pointer;
    perspective: 1000px;
}

.pr-questions__card-front,
.pr-questions__card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    border-radius: var(--pr-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pr-questions__card-front {
    background: white;
    background-size: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--pr-color-primary-light);
}

.pr-questions__card-back {
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    background-size: cover;
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(74, 111, 220, 0.4);
    position: relative;
}

.pr-questions__card.pr-questions__card--flipped .pr-questions__card-front {
    transform: rotateY(180deg);
}

.pr-questions__card.pr-questions__card--flipped .pr-questions__card-back {
    transform: rotateY(0deg);
}

.pr-questions__card-icon {
    width: 70px;
    height: 70px;
    background: var(--pr-color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--pr-transition-normal);
}

.pr-questions__card:hover .pr-questions__card-icon {
    background: var(--pr-color-primary);
    transform: scale(1.1);
}

.pr-questions__card-icon i {
    font-size: 2rem;
    color: var(--pr-color-primary);
    transition: color var(--pr-transition-normal);
}

.pr-questions__card:hover .pr-questions__card-icon i {
    color: white;
}

.pr-questions__card-question {
    color: var(--pr-color-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pr-questions__card-hint {
    font-size: var(--pr-fs-small);
    color: var(--pr-color-secondary);
    font-family: var(--pr-font-heading);
    opacity: 0.7;
}

.pr-questions__card-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--pr-transition-fast);
}

.pr-questions__card-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pr-questions__card-close i {
    font-size: 1.25rem;
}

.pr-questions__card-answer {
    color: white;
    line-height: 1.7;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.pr-newsletter {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pr-color-primary), var(--pr-color-secondary));
    overflow: hidden;
}

.pr-newsletter__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    filter: blur(3px);
    z-index: 0;
}

.pr-newsletter__bg-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-newsletter__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pr-newsletter__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pr-newsletter__icon-img {
    width: 100%;
    height: 100%;
}

.pr-newsletter__title {
    color: white;
    margin-bottom: 1rem;
}

.pr-newsletter__subtitle {
    color: var(--pr-color-snow);
    margin-bottom: 3rem;
}

.pr-newsletter__form-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pr-newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--pr-radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--pr-font-body);
    font-size: var(--pr-fs-body);
    transition: all var(--pr-transition-normal);
}

.pr-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.pr-newsletter__input:focus {
    outline: none;
    border-color: var(--pr-color-gold);
    background: rgba(255, 255, 255, 0.25);
}

.pr-newsletter__btn {
    white-space: nowrap;
}

.pr-newsletter__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--pr-fs-small);
    color: rgba(255, 255, 255, 0.8);
}

.pr-newsletter__privacy i {
    font-size: 0.875rem;
}

/* Modal */
.pr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pr-transition-normal);
}

.pr-modal--active {
    opacity: 1;
    visibility: visible;
}

.pr-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.pr-modal__content {
    position: relative;
    background: white;
    padding: 3rem;
    border-radius: var(--pr-radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform var(--pr-transition-normal);
}

.pr-modal--active .pr-modal__content {
    transform: scale(1);
}

.pr-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pr-color-snow);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pr-color-navy);
    transition: all var(--pr-transition-fast);
}

.pr-modal__close:hover {
    background: var(--pr-color-navy);
    color: white;
    transform: rotate(90deg);
}

.pr-modal__icon {
    width: 100px;
    height: 100px;
    background: var(--pr-color-gold-light);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-modal__icon i {
    font-size: 3rem;
    color: var(--pr-color-gold);
}

.pr-modal__title {
    color: var(--pr-color-primary);
    margin-bottom: 1rem;
}

.pr-modal__text {
    margin-bottom: 2rem;
    line-height: 1.7;
}
.pr-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .pr-modal__actions {
        flex-direction: row;
        justify-content: center;
    }
}

#ageModal .pr-modal__icon {
    background: var(--pr-color-primary-light);
}

#ageModal .pr-modal__icon img {
    width: 70px;
    height: 70px;
}

/* ============================================
   FOOTER
   ============================================ */
.pr-footer {
    background: var(--pr-color-navy);
    color: var(--pr-color-snow);
    padding-top: 4rem;
}

.pr-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pr-footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pr-footer__logo-img {
    height: 45px;
    width: auto;
}

.pr-footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pr-footer__section-title {
    color: var(--pr-color-gold);
    font-size: var(--pr-fs-subtitle);
    margin-bottom: 1.5rem;
}

.pr-footer__links {
    list-style: none;
}

.pr-footer__links li {
    margin-bottom: 0.75rem;
}

.pr-footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--pr-fs-small);
    transition: color var(--pr-transition-fast);
    display: inline-block;
}

.pr-footer__link:hover {
    color: var(--pr-color-gold);
    transform: translateX(3px);
}

.pr-footer__disclaimer {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 calc(-1 * var(--pr-container-padding));
    padding-left: var(--pr-container-padding);
    padding-right: var(--pr-container-padding);
}

.pr-footer__disclaimer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: justify;
}

.pr-footer__disclaimer-text strong {
    color: var(--pr-color-gold);
}

.pr-footer__certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    flex-wrap: wrap;
}

.pr-footer__cert-link {
    display: block;
    opacity: 0.6;
    transition: opacity var(--pr-transition-fast);
}

.pr-footer__cert-link:hover {
    opacity: 1;
}

.pr-footer__cert-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--pr-transition-fast);
}

.pr-footer__cert-link:hover .pr-footer__cert-img {
    filter: brightness(0) invert(.8);
}

.pr-footer__bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pr-footer__copyright {
    color: rgba(255, 255, 255, 0.6);
}
/**/
@media (max-width: 1000px) {
    .pr-questions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    :root {
        --pr-fs-h1: 2.5rem;
        --pr-fs-h2: 2rem;
        --pr-fs-h3: 1.5rem;
        --pr-container-padding: 1rem;
    }

    .pr-btn {
        padding: 0.875rem 1.75rem;
    }

    .pr-header__nav {
        display: none;
    }

    .pr-header__burger {
        display: flex;
    }

    .pr-header__cta {
        display: none;
    }

    .pr-hero {
        min-height: 100vh;
    }

    .pr-hero__subtitle {
        font-size: 1.125rem;
    }

    .pr-hero__btn {
        width: 100%;
        max-width: 300px;
    }

    .pr-hero__badges {
        gap: 1rem;
    }

    .pr-hero__badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    .pr-journey__timeline {
        padding: 2rem 0;
    }

    .pr-journey__line {
        top: 0;
        left: 50%;
        right: auto;
        bottom: 0;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .pr-journey__milestone {
        position: relative;
        left: 0 !important;
        transform: none;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pr-journey__milestone-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .pr-journey__milestone-tooltip {
        position: static;
        transform: none;
        width: 100%;
        max-width: 320px;
        margin-top: 1.5rem;
        opacity: 1;
        visibility: visible;
    }

    .pr-journey__milestone-tooltip::after {
        display: none;
    }

    .pr-showcase__wrapper {
        min-height: auto;
        flex-direction: column;
        gap: 2rem;
    }

    .pr-showcase__screen-img {
        transform: none;
    }

    .pr-showcase__feature {
        position: static;
        width: 100%;
    }

    .pr-showcase__play-btn {
        opacity: 1;
        width: 90px;
        height: 90px;
    }
    .pr-showcase__play-btn span {
        display: none;
          }
    .pr-wonders__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pr-wonders__card {
        padding: 2rem 1.5rem;
    }

    .pr-features__list {
        gap: 3rem;
    }

    .pr-features__item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pr-features__item--right {
        direction: ltr;
    }

    .pr-features__item-content {
        padding: 0;
    }

    .pr-features__icon-img {
        max-width: 280px;
    }

    .pr-features__item-badges {
        justify-content: center;
    }
    .pr-guide__step {
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .pr-guide__step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .pr-guide__step:nth-child(even) .pr-guide__step-card,
    .pr-guide__step:nth-child(odd) .pr-guide__step-card {
        margin: 0;
    }

    .pr-guide__step-card {
        padding: 1.5rem;
    }
    .pr-questions__card {
        height: 260px;
    }

    .pr-questions__card-front,
    .pr-questions__card-back {
        padding: 1.5rem;
    }

    .pr-questions__card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .pr-questions__card-icon i {
        font-size: 1.75rem;
    }

    .pr-questions__card-question {
        font-size: 1rem;
    }

    /* Newsletter Mobile */
    .pr-newsletter__form-wrapper {
        flex-direction: column;
    }

    .pr-newsletter__btn {
        width: 100%;
    }

    .pr-modal__content {
        padding: 2rem;
    }

    .pr-footer__main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pr-footer__certifications {
        gap: 1.5rem;
    }

    .pr-footer__cert-img {
        height: 40px;
    }
}
@media (max-width: 480px) {
    .pr-questions__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .pr-wonders__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-wonders__card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}