/* ===== PAGE STYLES ===== */
/* Общие стили для всех внутренних страниц */

/* Page Hero */
.page-hero {
    padding: 160px 40px 80px;
    background: var(--bg-card);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(250, 45, 72, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* ===== ABOUT PAGE ===== */

/* Story Section */
.about-story {
    padding: 100px 40px;
    background: var(--bg-main);
}

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

.story-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.story-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
}

.story-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.story-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.story-image-placeholder span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Stats Section */
.about-stats {
    padding: 80px 40px;
    background: var(--bg-card);
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(250, 45, 72, 0.25);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
}

/* Team Section */
.about-team {
    padding: 100px 40px;
    background: var(--bg-main);
}

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

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(250, 45, 72, 0.1) 0%, rgba(250, 45, 72, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.about-values {
    padding: 100px 40px;
    background: var(--bg-card);
}

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

.value-card {
    padding: 40px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(250, 45, 72, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.value-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

/* ===== SONGS PAGE ===== */

.songs-filters {
    padding: 40px;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.songs-grid-section {
    padding: 60px 40px 100px;
    background: var(--bg-main);
}

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

.song-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.song-artwork {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.song-artwork-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-artwork-bg svg {
    width: 64px;
    height: 64px;
    color: white;
    opacity: 0.8;
}

.song-artwork-bg.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.song-artwork-bg.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.song-artwork-bg.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.song-artwork-bg.gradient-4 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.song-artwork-bg.gradient-5 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.song-artwork-bg.gradient-6 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

.song-play-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(250, 45, 72, 0.4);
}

.song-card:hover .song-play-btn {
    opacity: 1;
    transform: translateY(0);
}

.song-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

.song-info {
    padding: 20px;
}

.song-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.song-occasion {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.song-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-type {
    padding: 5px 12px;
    background: rgba(250, 45, 72, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.song-duration {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== PRICES PAGE ===== */

.prices-section {
    padding: 80px 40px 100px;
    background: var(--bg-main);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.price-card.popular {
    border-color: var(--primary);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(250, 45, 72, 0.1) 0%, rgba(250, 45, 72, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.price-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    white-space: pre-line;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.price-value span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    white-space: pre-line;
}

.price-features-label {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-btn {
    width: 100%;
    justify-content: center;
}

/* Additional Services */
.additional-services {
    max-width: 900px;
    margin: 0 auto;
}

.additional-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(250, 45, 72, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.service-name {
    font-size: 16px;
    font-weight: 600;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    white-space: pre-line;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.prices-bottom-text {
    max-width: 720px;
    margin: 32px auto 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    white-space: pre-line;
}

/* ===== HOW TO ORDER PAGE ===== */

.steps-section {
    padding: 80px 40px 100px;
    background: var(--bg-main);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

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

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--primary), rgba(250, 45, 72, 0.1));
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(250, 45, 72, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-tip {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(250, 45, 72, 0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.step-tip-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.step-tip-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background: var(--bg-card);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}

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

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary);
}

.faq-item.active .faq-icon svg {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ORDER PAGE ===== */

.order-section {
    padding: 60px 40px 100px;
    background: var(--bg-main);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--primary);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-main);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 45, 72, 0.1);
    background: var(--bg-card);
}

.form-input::placeholder {
    color: var(--text-muted);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.form-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: auto;
    max-width: 400px;
    justify-content: center;
    padding: 16px 40px;
    font-size: 16px;
    margin: 24px auto 0;
    display: flex;
}

.order-info {
    margin-top: 32px;
    padding: 24px;
    background: rgba(250, 45, 72, 0.04);
    border-radius: var(--radius-md);
    text-align: center;
}

.order-info-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.order-info-text strong {
    color: var(--text-primary);
}

/* ===== CONTACTS PAGE ===== */

.contacts-section {
    padding: 60px 40px 100px;
    background: var(--bg-main);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(250, 45, 72, 0.25);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-card-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

.contacts-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contacts-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contacts-form-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== CTA Buttons ===== */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .story-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 20px 60px;
    }
    
    .about-story,
    .about-stats,
    .about-team,
    .about-values,
    .prices-section,
    .steps-section,
    .faq-section,
    .order-section,
    .contacts-section,
    .songs-filters,
    .songs-grid-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .order-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
/* ===== CSS FIXES ===== */
/* Добавьте этот код в конец файла pages.css или styles.css */

/* Fix for submit buttons - make them normal size */
.form-submit {
    width: auto !important;
    max-width: 100% !important;
    padding: 16px 40px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 24px !important;
    cursor: pointer !important;
}

/* Order form submit button */
.order-form .form-submit {
    width: 100% !important;
    max-width: 400px !important;
    margin: 24px auto 0 !important;
    display: flex !important;
}

/* Contact form submit button */
.contacts-form-wrapper .form-submit {
    width: 100% !important;
    max-width: 300px !important;
}


/* Price card button fix */
.price-btn {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    text-align: center !important;
}

/* General button improvements */
.btn {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Fix button hover states */
.form-submit:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(250, 45, 72, 0.35) !important;
}

.form-submit:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* SVG icon in button */
.form-submit svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

/* ===== Responsive fixes ===== */
@media (max-width: 768px) {
    .form-submit {
        width: 100% !important;
        max-width: none !important;
        padding: 16px 24px !important;
    }
    
    .order-form .form-submit {
        max-width: none !important;
    }
}


.team-grid-two {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-grid.contact-only {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-grid.contact-only .contacts-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 900px) {
    .contacts-grid.contact-only .contacts-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-grid-two {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}
