/* ================================
   ОСНОВНЫЕ СТИЛИ
   ================================ */

:root {
    /* Цветовая палитра - премиум бежевая (как в курсоре) */
    --primary-color: #C5A572; /* Премиум золотисто-бежевый */
    --primary-dark: #B08D5F; /* Темный оттенок */
    --primary-light: #D4B88A; /* Светлый оттенок */
    --secondary-color: #B08D5F;
    --accent-color: #F7F4ED;
    
    /* Текст - более контрастный для читаемости */
    --text-dark: #1F1F1F;
    --text-light: #3D3D3D;
    --text-muted: #6B6B6B;
    
    /* Фоны - премиум бежевые */
    --bg-light: #FAF8F4;
    --bg-white: #FFFFFF;
    --bg-cream: #F7F4ED;
    --bg-warm: #EDE6D8;
    
    --border-color: #D9CFBE;
    
    /* Шрифты - премиум и профессиональные */
    --font-primary: 'Cormorant Garamond', 'Lora', 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lora', 'Cormorant Garamond', 'Georgia', serif;
    
    /* Размеры */
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ================================
   ТИПОГРАФИЯ
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3.8rem; 
    font-weight: 500;
    letter-spacing: 0.01em;
}
h2 { 
    font-size: 2.8rem; 
    font-weight: 500;
    letter-spacing: 0.01em;
}
h3 { 
    font-size: 1.9rem; 
    font-weight: 500;
    letter-spacing: 0.01em;
}
h4 { 
    font-size: 1.6rem; 
    font-weight: 500;
    letter-spacing: 0.01em;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

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

/* ================================
   КНОПКИ
   ================================ */

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 17px;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, #C5A572 0%, #B08D5F 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4B88A 0%, #C5A572 100%);
    box-shadow: 0 6px 25px rgba(197, 165, 114, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================================
   HEADER
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
}

/* ================================
   PAGE HERO (для внутренних страниц)
   ================================ */

.page-hero {
    padding: 150px 0 100px;
    padding-top: calc(var(--header-height) + 100px);
    position: relative;
    background-image: url('../images/ChatGPT Image 5 янв. 2026 г., 15_28_52.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 245, 240, 0.7);
    z-index: 1;
}

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

.page-hero-content,
.page-hero .container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content .section-label,
.page-hero .section-label {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero-content h1,
.page-hero .page-title,
.page-hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-hero-content p,
.page-hero .page-subtitle,
.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 16px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-body);
    position: relative;
    padding: 8px 4px;
    display: inline-block;
    letter-spacing: 0.02em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-dark);
    transition: var(--transition);
    border-radius: 50%;
    background: transparent;
}

.social-icon:hover {
    color: var(--primary-color);
    background: rgba(197, 165, 114, 0.1);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background-image: url('../images/ChatGPT Image 5 янв. 2026 г., 15_28_52.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Фоновое видео */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}


/* Затемнение поверх видео (для приглушения) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 245, 240, 0.7); /* Бежевый оверлей с прозрачностью */
    z-index: 1;
}

/* Старый фон (можно удалить если видео работает) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('../images/hero-pattern.svg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: none; /* Скрываем когда есть видео */
}

.hero-content {
    position: relative;
    z-index: 2; /* Поверх видео и overlay */
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ================================
   СЕКЦИИ
   ================================ */

section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    font-weight: 400;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-text {
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ================================
   ABOUT PREVIEW
   ================================ */

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-cream);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.credentials-list {
    list-style: none;
    margin: 2rem 0;
}

.credentials-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 22px;
    height: 22px;
}

/* ================================
   APPROACH SECTION
   ================================ */

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.approach-item {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.approach-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* ================================
   SERVICES PREVIEW
   ================================ */

.services-preview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.link-arrow:hover {
    transform: translateX(5px);
    display: inline-block;
}

/* ================================
   LEAD MAGNET
   ================================ */

.lead-magnet {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.lead-magnet-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-magnet h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.lead-magnet p {
    color: rgba(255, 255, 255, 0.9);
}

.lead-form {
    display: flex;
    gap: 15px;
    margin: 2rem 0;
}

.lead-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-size: 16px;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.lead-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.lead-magnet-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.lead-magnet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lead-magnet-image .image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-magnet-image .image-placeholder svg {
    opacity: 0.9;
}

/* ================================
   TESTIMONIALS PREVIEW
   ================================ */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ================================
   WHY ME
   ================================ */

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.why-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 1rem;
}

/* ================================
   CONTACT FORM
   ================================ */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-top: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form textarea {
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background-color: var(--bg-warm);
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-dark);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-links,
.footer-contacts {
    list-style: none;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-dark);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-links-bottom a {
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

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

/* ================================
   MOTIVATIONAL QUOTES
   ================================ */

.motivational-quote {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.motivational-quote .container {
    position: relative;
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: rgba(60, 50, 40, 0.65);
    margin: 0;
    letter-spacing: 0.02em;
    position: relative;
}


@media (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
        color: rgba(60, 50, 40, 0.6);
    }
    
    .quote-content {
        padding: 30px 15px;
    }
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-fade-in.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Отключаем will-change после анимации для оптимизации */
.scroll-animated {
    will-change: auto;
}

/* ================================
   STATISTICS SECTION
   ================================ */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   REVIEW MODAL
   ================================ */

.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.review-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.review-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
    padding: 40px;
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10002;
}

.review-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.review-modal-header {
    margin-bottom: 30px;
}

.review-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.review-modal-header p {
    color: var(--text-light);
    margin: 0;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.review-form input,
.review-form textarea,
.review-form select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.review-form .rating-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-form .rating-stars {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    cursor: pointer;
}

.review-form .rating-stars span {
    color: var(--border-color);
    transition: var(--transition);
}

.review-form .rating-stars span:hover,
.review-form .rating-stars span.active {
    color: var(--primary-color);
}

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

/* ================================
   UTILITY CLASSES
   ================================ */

.image-placeholder {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */

.how-it-works {
    padding: 100px 0;
    background: var(--bg-warm);
}

.how-it-works .section-title {
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

