@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --color-golden: #FFC94A;
    --color-caramel: #C08B5C;
    --color-mauve: #795458;
    --color-deep-purple: #453F78;
    --color-cream: #FDF8F3;
    --color-white: #FFFFFF;
    --color-dark: #2A2438;
    --color-text: #4A4458;
    --color-text-light: #6B6578;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    --shadow-sm: 0 1px 3px rgba(69, 63, 120, 0.1);
    --shadow-md: 0 4px 12px rgba(69, 63, 120, 0.12);
    --shadow-lg: 0 8px 24px rgba(69, 63, 120, 0.15);
    --shadow-xl: 0 16px 48px rgba(69, 63, 120, 0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --container-narrow: 900px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 201, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(192, 139, 92, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(121, 84, 88, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    position: fixed;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 4rem;
    position: relative;
    z-index: 20;
}

.logo img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .logo img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-golden), var(--color-caramel));
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-deep-purple);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    gap: 5px;
    z-index: 101;
}

.burger__line {
    width: 20px;
    height: 2px;
    background: var(--color-deep-purple);
    transition: all var(--transition-base);
}

.burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-cream);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-deep-purple);
    padding: var(--space-sm) var(--space-md);
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--color-caramel);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 201, 74, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(69, 63, 120, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-deep-purple);
    margin-bottom: var(--space-lg);
}

.hero__badge i {
    color: var(--color-golden);
}

.hero__title {
    margin-bottom: var(--space-lg);
    color: var(--color-deep-purple);
}

.hero__title span {
    color: var(--color-caramel);
    font-style: italic;
}

.hero__text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 90%;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(69, 63, 120, 0.3));
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__float-card {
    position: absolute;
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__float-card--top {
    top: 10%;
    right: -10%;
}

.hero__float-card--bottom {
    bottom: 15%;
    left: -10%;
}

.hero__float-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.hero__float-icon--golden {
    background: rgba(255, 201, 74, 0.2);
    color: var(--color-caramel);
}

.hero__float-icon--purple {
    background: rgba(69, 63, 120, 0.1);
    color: var(--color-deep-purple);
}

.hero__float-text {
    font-size: 0.75rem;
}

.hero__float-text strong {
    display: block;
    color: var(--color-dark);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-mauve));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-deep-purple);
    border: 1px solid rgba(69, 63, 120, 0.2);
}

.btn--secondary:hover {
    background: var(--color-deep-purple);
    color: var(--color-white);
    border-color: var(--color-deep-purple);
}

.btn--golden {
    background: linear-gradient(135deg, var(--color-golden), var(--color-caramel));
    color: var(--color-white);
}

.btn--golden:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--alt {
    background: var(--color-white);
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(192, 139, 92, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-caramel);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-golden), var(--color-caramel));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 201, 74, 0.2), rgba(192, 139, 92, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-caramel);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.service-card__text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about__pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-golden), var(--color-caramel));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__title {
    margin-bottom: var(--space-lg);
}

.about__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
    padding: var(--space-md);
    background: rgba(69, 63, 120, 0.05);
    border-radius: var(--radius-md);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-deep-purple);
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-mauve));
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.process-step__icon {
    width: 56px;
    height: 56px;
    margin: var(--space-md) auto;
    background: rgba(255, 201, 74, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-caramel);
}

.process-step__title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.process-step__text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-mauve));
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 201, 74, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: var(--space-lg);
}

.product-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.product-card__text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-deep-purple);
}

.product-card__price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 201, 74, 0.3), rgba(192, 139, 92, 0.3));
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__content {
    padding: var(--space-lg);
}

.team-card__name {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.team-card__role {
    font-size: 0.8125rem;
    color: var(--color-caramel);
    margin-bottom: var(--space-md);
}

.team-card__bio {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.contact-section {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    padding: var(--space-lg) 0;
}

.contact-info__title {
    margin-bottom: var(--space-md);
}

.contact-info__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(255, 201, 74, 0.2), rgba(192, 139, 92, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-caramel);
    font-size: 0.875rem;
}

.contact-item__content {
    flex: 1;
}

.contact-item__label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.contact-item__value {
    font-size: 0.875rem;
    color: var(--color-dark);
    font-weight: 500;
}

.contact-item__value a {
    color: var(--color-deep-purple);
}

.contact-item__value a:hover {
    color: var(--color-caramel);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrapper {
    background: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(69, 63, 120, 0.15);
    border-radius: var(--radius-md);
    background: var(--color-white);
    font-size: 0.875rem;
    color: var(--color-dark);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-deep-purple);
    box-shadow: 0 0 0 3px rgba(69, 63, 120, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--color-deep-purple);
}

.form-checkbox__text {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.form-checkbox__text a {
    color: var(--color-deep-purple);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-top: var(--space-md);
}

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.footer__nav {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer__link {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-golden);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__copyright span {
    color: var(--color-golden);
}

.page-header {
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-cream), rgba(255, 201, 74, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(192, 139, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header__title {
    margin-bottom: var(--space-md);
}

.page-header__text {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9375rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.8125rem;
}

.breadcrumb__item {
    color: var(--color-text-light);
}

.breadcrumb__item--active {
    color: var(--color-deep-purple);
}

.breadcrumb__separator {
    color: var(--color-text-light);
}

.member-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(69, 63, 120, 0.1), rgba(121, 84, 88, 0.1));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-deep-purple);
}

.benefit-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.benefit-card__text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.thank-you__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-golden), var(--color-caramel));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.thank-you__title {
    margin-bottom: var(--space-md);
}

.thank-you__text {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.error__code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-deep-purple);
    line-height: 1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-mauve));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error__title {
    margin-bottom: var(--space-md);
}

.error__text {
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto var(--space-xl);
}

.legal-content {
    padding: var(--space-2xl) 0;
}

.legal-content h3 {
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--color-deep-purple);
}

.legal-content p,
.legal-content li {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: var(--space-lg);
    margin: var(--space-md) 0;
}

.legal-content li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.legal-content li::before {
    content: '•';
    color: var(--color-caramel);
    position: absolute;
    left: calc(var(--space-lg) * -1);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-xl));
    max-width: 500px;
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-popup__title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.cookie-popup__text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.cookie-popup__text a {
    color: var(--color-deep-purple);
    text-decoration: underline;
}

.cookie-popup__buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-popup__btn {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cookie-popup__btn--accept {
    background: var(--color-deep-purple);
    color: var(--color-white);
}

.cookie-popup__btn--accept:hover {
    background: var(--color-mauve);
}

.cookie-popup__btn--decline {
    background: transparent;
    border: 1px solid rgba(69, 63, 120, 0.2);
    color: var(--color-text);
}

.cookie-popup__btn--decline:hover {
    border-color: var(--color-deep-purple);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-golden);
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card__text {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-golden), var(--color-caramel));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-card__location {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        order: 2;
    }

    .hero__visual {
        order: 1;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__float-card {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--space-3xl) + 60px);
    }

    .hero__image-wrapper {
        max-width: 300px;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .footer__top {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .cta__buttons {
        flex-direction: column;
    }

    .cookie-popup__buttons {
        flex-direction: column;
    }
}

@media (max-width: 320px) {


    .section {
        padding: var(--space-2xl) 0;
    }
}