@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --color-terracotta: #C06C47;
    --color-terracotta-dark: #A55B3A;
    --color-terracotta-light: #E8A87C;
    --color-charcoal: #2D2926;
    --color-charcoal-light: #3D3835;
    --color-gold: #D4A574;
    --color-gold-dark: #B8925A;
    --color-gold-light: #E8C9A8;
    --color-cream: #FAF7F2;
    --color-white: #FFFFFF;
    --color-text-dark: #2D2926;
    --color-text-light: #FAF7F2;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glass: 0 8px 32px rgba(45, 41, 38, 0.12);
    --shadow-elevated: 0 16px 48px rgba(45, 41, 38, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-terracotta-dark);
}

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

.text-terracotta {
    color: var(--color-terracotta);
}

.text-charcoal {
    color: var(--color-charcoal);
}

.bg-terracotta {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.bg-charcoal {
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
}

.bg-gold {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

.bg-cream {
    background-color: var(--color-cream);
}

.bg-gradient-warm {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
}

.text-white {
    color: var(--color-white) !important;
}

.text-dark {
    color: var(--color-text-dark) !important;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 140px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mb-6 {
    margin-bottom: 2rem;
}

.mb-7 {
    margin-bottom: 3rem;
}

.mt-6 {
    margin-top: 2rem;
}

.mt-7 {
    margin-top: 3rem;
}

.py-6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-7 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.is-relative {
    position: relative;
}

.is-flex {
    display: flex;
}

.is-flex-wrap {
    flex-wrap: wrap;
}

.is-align-center {
    align-items: center;
}

.is-justify-center {
    justify-content: center;
}

.is-justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 2rem;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.column {
    flex: 1;
    padding: 12px;
}

@media screen and (max-width: 768px) {
    .column {
        flex: none;
        width: 100%;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 52px;
}

.button-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
}

.button-primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 108, 71, 0.35);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.button-secondary:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.button-gold {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.button-gold:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.button-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.button-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
}

.card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glass);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.card-text {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-gold-light);
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    margin-top: 12px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    background-color: var(--color-terracotta-light);
    color: var(--color-charcoal);
}

.tag-outline {
    background-color: transparent;
    border: 1px solid var(--color-terracotta);
    color: var(--color-terracotta);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-charcoal);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 41, 38, 0.92) 0%, rgba(192, 108, 71, 0.75) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--color-gold-light);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.intro-section {
    background-color: var(--color-cream);
}

.intro-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    height: 100%;
    border-left: 4px solid var(--color-gold);
}

.intro-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-terracotta-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.intro-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-terracotta);
}

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elevated);
}

.service-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.service-description {
    color: var(--color-charcoal-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-top: auto;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-gold);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-terracotta-light);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1.1rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
}

.team-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    text-align: center;
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-body {
    padding: 28px;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.team-role {
    color: var(--color-terracotta);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-charcoal-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 41, 38, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-charcoal);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.is-active .faq-icon {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--color-cream);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.faq-answer.is-active {
    max-height: 500px; /* Максимальная высота для содержимого */
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--color-charcoal-light);
    transition: opacity 0.3s ease;
}

.faq-answer-content.is-active {
    opacity: 1;
}

.faq-answer-content:not(.is-active) {
    opacity: 0;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 41, 38, 0.15);
}

.faq-item.is-active {
    box-shadow: 0 8px 24px rgba(45, 41, 38, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-section {
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-terracotta);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--color-white);
}

.contact-value a {
    color: var(--color-white);
    text-decoration: underline;
}

.contact-value a:hover {
    color: var(--color-gold);
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 0.8rem;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-elevated);
    z-index: 9999;
    display: block;
}

.cookie-content {
    margin-bottom: 20px;
}

.cookie-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-accept {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border: none;
}

.cookie-accept:hover {
    background-color: var(--color-terracotta-dark);
}

.cookie-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    border-color: var(--color-white);
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        min-width: auto;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(45, 41, 38, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

@media screen and (max-width: 1024px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-charcoal);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    
    .header-nav.is-active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
}

.footer {
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-list a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(212, 165, 116, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-text a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.page-header {
    background-color: var(--color-charcoal);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 41, 38, 0.95) 0%, rgba(192, 108, 71, 0.8) 100%);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url('../gallery/visuals/footer-showcase.webp') center/cover;
    opacity: 0.3;
}

.page-content {
    position: relative;
    z-index: 2;
}

.page-title {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--color-gold-light);
    font-size: 1.2rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb span {
    color: var(--color-gold);
}

.before-after-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.before-after-item {
    position: relative;
}

.before-after-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
}

.before-after-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.step-description {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-terracotta-light) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    height: 100%;
    border-top: 4px solid var(--color-gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-terracotta-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.feature-text {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition-smooth);
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-gold-light);
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    max-width: 120px;
    margin: 32px auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.list-check {
    list-style: none;
    padding: 0;
}

.list-check li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    color: var(--color-charcoal);
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media screen and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    font-weight: 500;
}

.quote-block {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    border-left: 6px solid var(--color-gold);
    margin: 32px 0;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-terracotta-light);
}

.quote-info {
    flex: 1;
}

.quote-name {
    font-weight: 600;
    color: var(--color-charcoal);
}

.quote-title {
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
}

.pricing-table th {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background-color: var(--color-cream);
}

.pricing-table tr:hover {
    background-color: rgba(212, 165, 116, 0.1);
}

.price-column {
    font-weight: 700;
    color: var(--color-terracotta);
}

.image-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid var(--color-gold);
    border-radius: 16px;
    pointer-events: none;
}

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

.text-shadow {
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.overflow-hidden {
    overflow: hidden;
}

.ratio-4-3 {
    aspect-ratio: 4/3;
}

.ratio-16-9 {
    aspect-ratio: 16/9;
}

.ratio-1-1 {
    aspect-ratio: 1/1;
}

.object-cover {
    object-fit: cover;
}

.is-hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-padding-lg {
        padding: 80px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .button {
        width: 100%;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

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

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--color-white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

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

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-terracotta);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-terracotta-dark);
}

::selection {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}