/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stone-50: #FDFCF8;
    --stone-100: #F5F5F0;
    --stone-200: #E6E6E0;
    --stone-300: #D6D3D1;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --white: #ffffff;
    --telegram: #229ED9;

    /* Animation timing */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: var(--stone-50);
    color: var(--stone-800);
    overflow-x: hidden;
    line-height: 1.6;
}

.font-serif {
    font-family: "Cormorant Garamond", serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--stone-50);
}

::-webkit-scrollbar-thumb {
    background: var(--stone-300);
    border-radius: 4px;
}

/* Container & Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section .container {
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 80px 0;
    }

    .section .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .section .container {
        padding: 0 48px;
    }
}

.text-center {
    text-align: center;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 252, 248, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone-100);
}

.nav-logo {
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--stone-800);
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-link {
    color: var(--stone-600);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--stone-900);
}

.nav-link.nav-home {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link.nav-home svg {
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.nav-link.nav-home:hover svg {
    opacity: 1;
}

.nav-link.nav-highlight-alt {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.08) 0%, rgba(28, 25, 23, 0.12) 100%);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--stone-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.nav-link.nav-highlight-alt:hover {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.12) 0%, rgba(28, 25, 23, 0.16) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--stone-900);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--stone-800);
    cursor: pointer;
    padding: 8px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--stone-50);
    padding-top: 96px;
    padding: 96px 24px 24px;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu .nav-link {
    font-size: 20px;
    font-family: "Cormorant Garamond", serif;
    color: var(--stone-800);
}

.mobile-menu .nav-link.nav-highlight-alt {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.08) 0%, rgba(28, 25, 23, 0.12) 100%);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: var(--stone-900);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.2;
    color: var(--stone-900);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone-900);
}

.hero-title .italic {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: var(--stone-600);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 0;
}

.hero-description {
    font-size: 18px;
    color: var(--stone-600);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Fitness Visual Animation */
.fitness-circles {
    position: relative;
    width: 450px;
    height: 450px;
}

.fitness-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.fitness-circle-1 {
    width: 400px;
    height: 400px;
    top: 25px;
    left: 25px;
    border-color: rgba(87, 83, 78, 0.15);
    animation: pulse-circle 8s ease-in-out infinite;
}

.fitness-circle-2 {
    width: 280px;
    height: 280px;
    top: 85px;
    left: 85px;
    border-color: rgba(87, 83, 78, 0.2);
    animation: pulse-circle 8s ease-in-out infinite 1s;
    background: radial-gradient(circle at 30% 30%, rgba(232, 230, 225, 0.8), rgba(245, 245, 240, 0.4));
}

.fitness-circle-3 {
    width: 160px;
    height: 160px;
    top: 145px;
    left: 145px;
    border-color: rgba(87, 83, 78, 0.25);
    animation: pulse-circle 8s ease-in-out infinite 2s;
    background: linear-gradient(135deg, rgba(214, 211, 209, 0.3), rgba(232, 230, 225, 0.6));
}

.fitness-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fitness-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--stone-500);
    border-radius: 50%;
    opacity: 0;
    animation: dot-fade 6s ease-in-out infinite;
}

.fitness-dot:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.fitness-dot:nth-child(2) {
    top: 65%;
    right: 12%;
    animation-delay: 2s;
}

.fitness-dot:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Decorative lines */
.fitness-circles::before,
.fitness-circles::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(87, 83, 78, 0.1), transparent);
    height: 1px;
}

.fitness-circles::before {
    width: 120px;
    top: 50%;
    left: -60px;
    animation: line-slide 10s ease-in-out infinite;
}

.fitness-circles::after {
    width: 100px;
    top: 30%;
    right: -50px;
    animation: line-slide 10s ease-in-out infinite 5s;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.03) rotate(2deg);
        opacity: 0.85;
    }
    50% {
        transform: scale(0.98) rotate(0deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.02) rotate(-2deg);
        opacity: 0.95;
    }
}

@keyframes dot-fade {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    15% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1);
    }
    30% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.1);
    }
    50% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
}

@keyframes line-slide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateX(40px);
        opacity: 0.3;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero-brand {
        font-size: 56px;
    }

    .hero-title .italic {
        font-size: 38px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-brand {
        font-size: 64px;
    }

    .hero-title .italic {
        font-size: 42px;
    }

    .hero-content {
        max-width: 650px;
    }
}

/* ===== ANIMATIONS SYSTEM ===== */

/* Fade In animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Transitions */
.section {
    opacity: 1;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--stone-300), transparent);
    opacity: 0.4;
}

.section:first-of-type::before {
    display: none;
}

.hero {
    opacity: 1;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--stone-800);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--stone-700);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 1px solid var(--stone-800);
    color: var(--stone-800);
    background: transparent;
}

.btn-outline:hover {
    background: var(--stone-100);
}

.btn-white {
    background: var(--white);
    color: var(--stone-900);
}

.btn-white:hover {
    background: var(--stone-200);
}

.btn-telegram {
    background: var(--telegram);
    color: var(--white);
}

.btn-telegram:hover {
    background: #1b8bc2;
}

.btn-full {
    width: 100%;
}

/* Grid */
.grid {
    display: grid;
    gap: 32px;
}

.grid-cols-2 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-cols-3 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-lift:hover {
    transform: translateY(-8px);
}

.card-image {
    height: 192px;
    background: var(--stone-200);
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.card-image:hover img {
    opacity: 1;
}

.card-title {
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 8px;
}

.card-text {
    color: var(--stone-600);
    margin-bottom: 24px;
    font-weight: 300;
}

.card-list {
    font-size: 14px;
    color: var(--stone-500);
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.card-list li {
    padding: 8px 0;
}

/* Heading */
.heading {
    margin-bottom: 48px;
}

.heading-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: var(--stone-900);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .heading-title {
        font-size: 48px;
    }
}

.heading-divider {
    width: 64px;
    height: 1px;
    background: var(--stone-400);
    margin: 16px 0;
}

.heading.text-center .heading-divider {
    margin-left: auto;
    margin-right: auto;
}

.heading-subtitle {
    color: var(--stone-500);
    font-weight: 300;
    font-size: 18px;
    max-width: 42rem;
}

.heading.text-center .heading-subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .heading-title {
        font-size: 60px;
    }
}

/* Target Audience */
.audience-section {
    padding: 80px 0;
}

.audience-section .container {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 60px 48px;
    backdrop-filter: blur(4px);
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.audience-item:last-child {
    margin-bottom: 0;
}

.audience-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(87, 83, 78, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.audience-icon svg {
    width: 22px;
    height: 22px;
    color: var(--stone-600);
}

.audience-text {
    font-size: 17px;
    color: var(--stone-800);
    font-weight: 400;
    line-height: 1.5;
}

/* Program Timeline */
.program-timeline {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    border-left: 1px solid var(--stone-300);
    padding-left: 48px;
    padding-top: 16px;
}

.program-step {
    position: relative;
    margin-bottom: 48px;
}

.program-step-number {
    position: absolute;
    left: -41px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--stone-100);
    border: 1px solid var(--stone-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: "Cormorant Garamond", serif;
}

.program-time {
    font-size: 14px;
    color: var(--stone-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.program-title {
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 12px;
    color: var(--stone-800);
}

.program-description {
    color: var(--stone-600);
    font-weight: 300;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .program-timeline {
        padding-left: 64px;
    }

    .program-step-number {
        left: -57px;
    }
}

/* Trainer Section */
.trainer-section {
    background: var(--stone-900);
    color: var(--stone-50);
    border-radius: 24px;
    padding: 32px 24px;
    overflow: hidden;
    position: relative;
}

.trainer-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.trainer-image-wrapper {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3/4;
    background: var(--stone-800);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

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

.trainer-info-main {
    flex: 1;
}

.trainer-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    margin-bottom: 4px;
}

.trainer-role {
    color: var(--stone-400);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.trainer-skills {
    margin-bottom: 0;
}

.trainer-skill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.trainer-skill:last-child {
    margin-bottom: 0;
}

.trainer-skill-dot {
    width: 6px;
    height: 6px;
    background: var(--stone-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.trainer-skill-text {
    color: var(--stone-300);
    font-weight: 300;
    font-size: 14px;
}

.trainer-quote-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
}

.trainer-quote {
    color: var(--stone-400);
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding-left: 32px;
    padding-right: 32px;
}

.trainer-quote::before,
.trainer-quote::after {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    color: var(--stone-600);
    line-height: 1;
    font-style: normal;
    font-weight: 400;
}

.trainer-quote::before {
    content: '«';
    position: absolute;
    left: 0;
    top: 0;
}

.trainer-quote::after {
    content: '»';
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Trainer Certificates */
.trainer-certs {
    padding-top: 32px;
    border-top: 1px solid var(--stone-800);
}

.trainer-certs-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--stone-200);
}

.trainer-certs-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trainer-certs-grid::-webkit-scrollbar {
    display: none;
}

.trainer-cert-card {
    background: var(--stone-800);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid var(--stone-700);
    flex: 0 0 140px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .trainer-certs-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .trainer-cert-card {
        flex: none;
    }
}

.trainer-cert-card:hover {
    background: var(--stone-700);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.trainer-cert-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--stone-700);
}

.trainer-cert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-cert-title {
    font-size: 10px;
    color: var(--stone-300);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Certificate Modal */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.cert-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.cert-modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-modal-content img {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cert-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: var(--stone-100);
    border: none;
    font-size: 24px;
    color: var(--stone-600);
    cursor: pointer;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-modal-close:hover {
    background: var(--stone-200);
    color: var(--stone-900);
}

@media (min-width: 768px) {
    .trainer-section {
        padding: 48px 40px;
    }

    .trainer-header {
        flex-direction: row;
        align-items: stretch;
        gap: 32px;
    }

    .trainer-image-wrapper {
        margin: 0;
        max-width: 200px;
        flex-shrink: 0;
    }

    .trainer-info-main {
        flex: 1;
        min-width: 0;
    }

    .trainer-name {
        font-size: 32px;
    }

    .trainer-role {
        font-size: 15px;
    }

    .trainer-skill-text {
        font-size: 15px;
    }

    .trainer-quote-wrapper {
        flex: 1;
        min-width: 0;
        padding: 0;
    }

    .trainer-quote {
        font-size: 15px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .trainer-quote::before,
    .trainer-quote::after {
        font-size: 56px;
    }

    .trainer-cert-card {
        padding: 12px;
    }

    .trainer-cert-title {
        font-size: 11px;
    }
}

/* Benefits */
.benefit-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    padding: 40px 24px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--stone-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-700);
    margin-bottom: 8px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

.benefit-description {
    font-size: 14px;
    color: var(--stone-500);
    font-weight: 300;
}

/* Pricing */
.pricing-container {
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-amount {
    font-size: 72px;
    font-family: "Cormorant Garamond", serif;
    color: var(--stone-800);
    margin-bottom: 16px;
}

.pricing-label {
    color: var(--stone-500);
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
    margin-bottom: 40px;
}

.pricing-card-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--stone-400);
}

.pricing-list {
    display: grid;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) {
    .pricing-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--stone-700);
    font-weight: 300;
    font-size: 18px;
}

.pricing-list svg {
    width: 20px;
    height: 20px;
    color: var(--stone-400);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Tariffs */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .tariffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tariff-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
    text-align: center;
    transition: all var(--transition-normal);
}

.tariff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tariff-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: var(--stone-800);
    margin-bottom: 24px;
    font-weight: 600;
}

.tariff-price {
    font-size: 56px;
    font-family: "Cormorant Garamond", serif;
    color: var(--stone-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.tariff-label {
    color: var(--stone-500);
    font-size: 16px;
    font-weight: 300;
}

.tariff-included {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
    margin-top: 40px;
}

.tariff-included-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--stone-400);
}

.tariff-included-list {
    display: grid;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) {
    .tariff-included-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tariff-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--stone-700);
    font-weight: 300;
    font-size: 18px;
}

.tariff-included-list svg {
    width: 20px;
    height: 20px;
    color: var(--stone-400);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Quiz */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
}

.quiz-question-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: var(--stone-800);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quiz-option {
    background: var(--stone-50);
    border: 2px solid var(--stone-200);
    padding: 24px 32px;
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    font-size: 18px;
    color: var(--stone-800);
    font-weight: 400;
}

.quiz-option:hover {
    background: var(--white);
    border-color: var(--stone-400);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-option:active {
    transform: translateY(-2px);
}

.quiz-option.active {
    background: var(--stone-800);
    color: var(--white);
    border-color: var(--stone-800);
}

.quiz-option.active:hover {
    background: var(--stone-700);
    border-color: var(--stone-700);
}

.quiz-option-desc {
    display: block;
    font-size: 14px;
    color: var(--stone-500);
    margin-top: 8px;
    font-weight: 300;
}

.quiz-option.active .quiz-option-desc {
    color: var(--stone-200);
}

.quiz-option-text {
    display: block;
    font-weight: 500;
}

/* Slider */
.quiz-slider-wrapper {
    margin: 40px 0;
}

.quiz-slider-container {
    position: relative;
    margin-bottom: 24px;
}

.quiz-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--stone-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.quiz-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--stone-800);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.quiz-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quiz-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--stone-800);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.quiz-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quiz-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 14px;
    color: var(--stone-500);
}

.quiz-slider-value {
    text-align: center;
    font-size: 32px;
    font-family: "Cormorant Garamond", serif;
    color: var(--stone-800);
    font-weight: 600;
    margin-bottom: 32px;
}

.quiz-next:disabled,
.quiz-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.quiz-next,
.quiz-prev {
    margin-top: 32px;
}

.quiz-question .quiz-prev,
.quiz-question .quiz-next {
    display: inline-block;
    margin-right: 16px;
}

.quiz-question .quiz-prev:last-child,
.quiz-question .quiz-next:last-child {
    margin-right: 0;
}

@media (min-width: 640px) {
    .quiz-question .quiz-prev,
    .quiz-question .quiz-next {
        margin-right: 16px;
    }
}

.quiz-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .quiz-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Checkboxes */
.quiz-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.quiz-checkbox {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--stone-50);
    border: 2px solid var(--stone-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.quiz-checkbox:hover {
    background: var(--white);
    border-color: var(--stone-400);
}

.quiz-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    cursor: pointer;
    accent-color: var(--stone-800);
    flex-shrink: 0;
}

.quiz-checkbox input[type="checkbox"]:checked + .quiz-checkbox-text {
    color: var(--stone-800);
    font-weight: 500;
}

.quiz-checkbox:has(input[type="checkbox"]:checked) {
    background: var(--white);
    border-color: var(--stone-800);
}

.quiz-checkbox-text {
    font-size: 16px;
    color: var(--stone-700);
    font-weight: 300;
}

.quiz-result {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stone-100);
    text-align: center;
}

.quiz-result-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: var(--stone-800);
    margin-bottom: 24px;
    font-weight: 600;
}

.quiz-result-price {
    font-size: 64px;
    font-family: "Cormorant Garamond", serif;
    color: var(--stone-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.quiz-result-label {
    color: var(--stone-500);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

.quiz-included {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.quiz-included-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--stone-400);
}

.quiz-included-list {
    display: grid;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) {
    .quiz-included-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quiz-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--stone-700);
    font-weight: 300;
    font-size: 18px;
}

.quiz-included-list svg {
    width: 20px;
    height: 20px;
    color: var(--stone-400);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: 400px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        height: 500px;
    }
}

/* Testimonials */
.testimonials-section {
    background: rgba(245, 245, 240, 0.5);
    border-radius: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonial-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1;
}

.testimonial-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--stone-400);
}

.testimonial-text {
    color: var(--stone-600);
    font-weight: 300;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 32px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--stone-800);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    position: relative;
    z-index: 10;
}

.step-line {
    display: none;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .step:not(:last-child) .step-line {
        display: block;
        position: absolute;
        top: 32px;
        left: 50%;
        width: 100%;
        height: 1px;
        background: var(--stone-300);
        z-index: 0;
    }
}

.step-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.step-text {
    font-size: 14px;
    color: var(--stone-500);
    font-weight: 300;
}

/* Contact CTA */
.contact-section {
    margin-bottom: 80px;
}

.contact-card {
    background: var(--stone-800);
    color: var(--white);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
}

.contact-bg-circle-1 {
    top: -80px;
    left: -80px;
    width: 256px;
    height: 256px;
    background: var(--stone-700);
}

.contact-bg-circle-2 {
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: var(--stone-600);
}

.contact-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    margin: 0 auto;
}

.contact-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-description {
    color: var(--stone-300);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.contact-phone-label {
    color: var(--stone-400);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-phone {
    font-size: 32px;
    font-family: "Cormorant Garamond", serif;
    color: var(--white);
    text-decoration: none;
}

.contact-phone:hover {
    text-decoration: underline;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .contact-card {
        padding: 80px;
    }

    .contact-title {
        font-size: 72px;
    }
}

/* Footer */
.footer {
    background: var(--stone-900);
    color: var(--stone-500);
    padding: 48px 0;
    border-top: 1px solid var(--stone-800);
}

.footer-grid {
    display: grid;
    gap: 32px;
    font-size: 14px;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand h4 {
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 384px;
    font-weight: 300;
}

.footer-section h5 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-size: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--stone-500);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-info {
    font-weight: 300;
}

.footer-info li {
    margin-bottom: 8px;
}

.footer-info a {
    text-decoration: underline;
    color: inherit;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Floating Quiz Button */
.floating-quiz-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background: var(--stone-800);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.floating-quiz-btn:hover {
    background: var(--stone-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.floating-quiz-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .floating-quiz-btn {
        bottom: 60px;
        right: 16px;
        padding: 14px 20px;
        font-size: 14px;
    }
}
