@font-face {
    font-family: 'Sol Kol';
    src: url('fonts/Sol Kol.ttf');
}

@font-face {
    font-family: 'Pioner Sans-SemiBold';
    src: url('fonts/PionerSans-SemiBold.ttf');
}

@font-face {
    font-family: 'Vela Sans-semiBold';
    src: url('fonts/VelaSans-SemiBold.ttf');
}

@font-face {
    font-family: 'Pioner Sans-Medium';
    src: url('fonts/PionerSans-Medium.ttf');
}

@font-face {
    font-family: 'Christopher';
    src: url('fonts/Christopher.otf');
}

@font-face {
    font-family: 'Vela Sans-medium';
    src: url('fonts/VelaSans-Medium.ttf');
}

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

body {
    background: #fafafa;
    overflow-x: hidden;
    font-family: 'Pioner Sans';
}

/* Дизайн */
.design {
    font-family: 'Sol Kol';
    font-size: 320px;
    line-height: .5;
    background: linear-gradient(90deg, #ff2ce5, #a649ff, #ff00dd, #a649ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 60px 0;
    transform: translateY(20px);
    animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg {
    position: fixed;
    inset: 0;
    background: url('assets/texture.png') center/cover no-repeat;
    opacity: .35;
    pointer-events: none;
}

.wrap {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: auto;
    padding: 30px 60px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    gap: 12px;
    font-family: 'Vela Sans-medium';
}

nav a {
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #ff2ce5, #a649ff);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    color: #d119ff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2ce5, #a649ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

nav a:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(166, 73, 255, 0.3);
}

nav a:hover::before {
    opacity: 1;
}

/* Активная кнопка (для JavaScript) */
nav a.active {
    background-image: linear-gradient(135deg, #ff2ce5, #a649ff), linear-gradient(135deg, #ff2ce5, #a649ff);
    color: white;
    box-shadow: 0 4px 20px rgba(166, 73, 255, 0.3);
    transform: translateY(-2px);
}

nav a.active::before {
    opacity: 0;
}

/* Анимация при нажатии */
nav a:active {
    transform: translateY(0px) scale(0.95);
}

.logo {
    font-family: 'Pioner Sans';
    font-size: 42px;
    color: rgb(200, 0, 250);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-left {
    max-width: 700px;
    z-index: 3;
}

h1 {
    font-family: 'Pioner Sans';
    font-size: 72px;
    line-height: .95;
    margin-top: -10px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

p {
    font-family: 'Vela Sans-SemiBold';
    margin-top: 35px;
    max-width: 470px;
    font-size: 20px;
    color: #8e8e8e;
    line-height: 1.3;
    text-align: center;
    margin-left: 320px;
}

button {
    margin-top: 40px;
    margin-left: 400px;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    position: relative;
    background: linear-gradient(135deg, #ff2ce5, #a649ff);
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(166, 73, 255, 0.35);
    overflow: hidden;
    letter-spacing: 0.5px;
}

/* Тень-свечение */
button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2ce5, #a649ff);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Белый слой для эффекта при наведении */
button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: white;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Текст */
button span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Стрелка */
button .arrow {
    display: inline-block;
    margin-left: 12px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* HOVER */
button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 45px rgba(166, 73, 255, 0.6);
}

button:hover::before {
    opacity: 1;
    transform: scale(1.15);
}

button:hover::after {
    opacity: 1;
}

button:hover span {
    color: #a649ff;
}

button:hover .arrow {
    transform: translateX(8px) scale(1.1);
}

/* ACTIVE */
button:active {
    transform: translateY(0px) scale(0.95);
    box-shadow: 0 4px 15px rgba(166, 73, 255, 0.3);
}

.hero-right {
    position: absolute;
    right: -310px;
    bottom: -100px;
}

.hero-right img {
    width: 640px;
}

@media (max-width: 1100px) {
    .hero-right {
        opacity: .25;
        right: -250px;
    }
    .design {
        font-size: 120px;
    }
    h1 {
        font-size: 50px;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.1);
    padding: 10px 250px;      
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.wrap {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: auto;
    padding: 100px 60px 30px 60px;
}

/* ===== РАЗДЕЛИТЕЛЬ ===== */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a649ff, #ff2ce5, transparent);
    margin: 80px 0;
    opacity: 0.5;
}


/* Левая часть с текстом */
/* ===== ОБО МНЕ ===== */
.about {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* КАРТИНКА СЛЕВА */
.about-left-image {
    flex-shrink: 0;
    width: 600px;
    
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    opacity: 0.9;
    transform: translateX(-300px) !important;
}

/* ТЕКСТ СПРАВА */
.about-content {
    flex: 1;
    text-align: right;
}

.about-title {
    font-family: 'Pioner Sans-Medium';
    font-size: 120px;
    background: linear-gradient(90deg, #ff2ce5, #a649ff, #ff00dd, #a649ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s ease-in-out infinite;
    margin-bottom: 40px;
    text-align: right;
}

.about-text {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #444444;
    max-width: 750px;
    margin: 0 0 30px auto;
    text-align: right;
}


/* ===== ЦЕНЫ ===== */
/* ===== ЦЕНЫ ===== */
.prices {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.prices-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
    width: 100%;
}

.prices-title {
    font-family: 'pioner sans - medium', sans-serif;
    font-size: 140px;
    background: linear-gradient(90deg, #ff2ce5, #a649ff, #ff00dd, #a649ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s ease-in-out infinite;
    margin-bottom: 10px;
    text-align: center;
}

.prices-subtitle {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 20px;
    color: #888;
    margin-bottom: 50px;
    text-align: center;
    transform: translateX(-50px);
}

/* Карточки */
.prices-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 320px;
    padding: 40px 30px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.price-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.price-card-title {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.price-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 2;
    text-align: center;
}

.price-card-list li::before {
    content: "• ";
    color: #a649ff;
}

.price-card-btn {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.price-card:hover .price-card-btn {
    transform: scale(1.05);
}

/* Светлая тема */
.price-light {
    background: #ffffff;
    border-color: #f0f0f0;
}

.price-light .price-card-title {
    color: #222;
}

.price-light .price-card-list {
    color: #666;
}

.price-light .price-card-btn {
    color: #222;
    border-color: #222;
    background: transparent;
}

.price-light:hover .price-card-btn {
    background: transparent;
    color: #222;
    border-color: #222;
}

/* Тёмная тема */
.price-dark {
    background: #1a1a1a;
    border-color: #333;
}

.price-dark .price-card-title {
    color: #f0f0f0;
}

.price-dark .price-card-list {
    color: #999;
}

.price-dark .price-card-btn {
    color: #f0f0f0;
    border-color: #f0f0f0;
    background: transparent;
}

.price-dark:hover .price-card-btn {
    background: transparent;
    color: #f0f0f0;
    border-color: #f0f0f0;
}

/* Адаптив */
@media (max-width: 768px) {
    .prices {
        padding: 50px 0;
        min-height: auto;
    }

    .prices-title {
        font-size: 40px;
    }

    .prices-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        transform: translateY(-20px);
        text-align: center;
    }

    .prices-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .price-card {
        width: 100%;
        max-width: 320px;
        padding: 30px 20px 25px;
    }

    .price-card-title {
        font-size: 20px;
    }

    .price-card-icon {
        font-size: 36px;
    }

    .price-card-list {
        font-size: 14px;
    }
}

/* ===== КОНТАКТЫ ===== */

.contacts {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contacts-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
    width: 100%;
}

.contacts-title {
    font-family: 'Pioner sans - medium', sans-serif;
    font-size: 140px;
    background: linear-gradient(90deg, #ff2ce5, #a649ff, #ff00dd, #a649ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s ease-in-out infinite;
    margin-bottom: 10px;
}

.contacts-subtitle {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 20px;
    color: #888;
    margin-bottom: 50px;
    text-align: center;
    transform: translateX(-50px);
}

/* Соцсети */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    padding: 35px 25px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1.2px solid transparent;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    min-height: 230px;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.social-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.04);
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    display: block;
    object-fit: contain;
    
}

.social-name {
    font-family: 'Vela Sans-Medium', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}  

.social-desc {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
    transform: translateX(-162px);
}

.social-btn {
    font-family: 'Pioner Sans-Medium', sans-serif;
    font-size: 20px;
    padding: 8px 22px;
    border-radius: 999px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-card:hover .social-btn {
    transform: scale(1.05);
}

/* Telegram */
.social-card.telegram {
    background: #f0f4ff;
    border-color: #e0e8f5;
}

.social-card.telegram .social-name {
    color: #0088cc;
}

.social-card.telegram .social-desc {
    color: #555;
}

.social-card.telegram .social-btn {
    color: #0088cc;
    border-color: #0088cc;
    background: transparent;
}

.social-card.telegram:hover .social-btn {
    background: #0088cc;
    color: white;
}

.social-card.telegram:hover .social-icon-wrapper {
    background: #0088cc20;
}

/* Pinterest */
.social-card.pinterest {
    background: #fff5f5;
    border-color: #f5e0e0;
}

.social-card.pinterest .social-name {
    color: #e60023;
}

.social-card.pinterest .social-desc {
    color: #555;
}

.social-card.pinterest .social-btn {
    color: #e60023;
    border-color: #e60023;
    background: transparent;
}

.social-card.pinterest:hover .social-btn {
    background: #e60023;
    color: white;
}

.social-card.pinterest:hover .social-icon-wrapper {
    background: #e6002320;
}

/* Behance */
.social-card.behance {
    background: #fff5f5;
    border-color: #e0e0f5;
}

.social-card.behance .social-name {
    color: #1769ff;
}

.social-card.behance .social-desc {
    color: #555;
}

.social-card.behance .social-btn {
    color: #1769ff;
    border-color: #1769ff;
    background: transparent;
}

.social-card.behance:hover .social-btn {
    background: #1769ff;
    color: white;
}

.social-card.behance:hover .social-icon-wrapper {
    background: #1769ff20;
}

/* ===== ПОДВАЛ ===== */
.footer {
    padding: 20px 0 10px;
    margin-top: 40px;
    border-top: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, transparent, #a649ff, #ff2ce5, transparent);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    opacity: 0.8;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-content p {
    font-family: 'Vela Sans-SemiBold', sans-serif;
    font-size: 16px;
    color: #999;
    letter-spacing: 0.3px;
    margin: 0;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    transform: translateY(10px);
}

/* Адаптив */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .contacts {
        padding: 50px 0;
        min-height: auto;
    }

    .contacts-title {
        font-size: 40px;
    }

    .contacts-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-card {
        width: 100%;
        max-width: 300px;
        padding: 30px 20px 25px;
    }

    .social-name {
        font-size: 20px;
    }

    .social-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }
}

/* ===== АДАПТИВ ===== */

/* Планшеты и маленькие ноутбуки */
@media (max-width: 1200px) {
    header {
        padding: 10px 40px;
    }
    
    .about-left-image {
        width: 400px;
    }
    
    .about-image {
        transform: translateX(-150px) !important;
    }
    
    .about-title {
        font-size: 80px;
    }
    
    .about-text {
        font-size: 20px;
    }
}

/* Планшеты вертикально */
@media (max-width: 992px) {
    header {
        padding: 10px 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    nav {
        gap: 8px;
    }
    
    nav a {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .design {
        font-size: 120px;
        padding: 30px 0;
    }
    
    h1 {
        font-size: 40px;
        white-space: normal;
    }
    
    p {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }
    
    button {
        margin-left: 0;
        margin-top: 30px;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-right {
        display: none;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-left-image {
        width: 250px;
        order: -1;
    }
    
    .about-image {
        transform: translateX(0) !important;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        text-align: center;
        font-size: 60px;
    }
    
    .about-text {
        text-align: center;
        margin: 0 auto 20px auto;
        font-size: 18px;
        max-width: 100%;
    }
    
    .prices-title,
    .contacts-title {
        font-size: 60px;
    }
    
    .divider {
        margin: 40px 0;
    }
}

/* Телефоны */
@media (max-width: 768px) {
    .wrap {
        padding: 70px 15px 20px 15px;
    }
    
    header {
        padding: 8px 15px;
        gap: 6px;
    }
    
    nav {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .design {
        font-size: 60px;
        padding: 20px 0;
        transform: translateY(10px);
    }
    
    h1 {
        font-size: 28px;
        margin-top: 0;
        white-space: normal;
    }
    
    p {
        font-size: 15px;
        margin-top: 20px;
        line-height: 1.6;
    }
    
    button {
        padding: 12px 24px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 25px;
    }
    
    button .arrow {
        margin-left: 8px;
    }
    
    button span {
        font-size: 14px;
    }
    
    .hero {
        min-height: auto;
        padding: 30px 0 20px 0;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* ABOUT */
    .about {
        padding: 30px 0;
        min-height: auto;
    }
    
    .about-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .about-left-image {
        width: 150px;
        order: -1;
    }
    
    .about-image {
        transform: translateX(0) !important;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    .about-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
        margin: 0 auto 15px auto;
        max-width: 100%;
    }
    
    /* PRICES & CONTACTS */
    .prices,
    .contacts {
        padding: 30px 0;
        min-height: auto;
    }
    
    .prices-content,
    .contacts-content {
        padding: 0 15px;
    }
    
    .prices-title,
    .contacts-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .prices-text,
    .contacts-text {
        font-size: 15px;
    }
    
    /* DIVIDER */
    .divider {
        margin: 30px 0;
    }
}

/* Маленькие телефоны (до 400px) */
@media (max-width: 400px) {
    .wrap {
        padding: 60px 10px 15px 10px;
    }
    
    header {
        padding: 5px 10px;
    }
    
    nav a {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .design {
        font-size: 40px;
        padding: 15px 0;
    }
    
    h1 {
        font-size: 22px;
    }
    
    p {
        font-size: 13px;
    }
    
    button {
        padding: 10px 18px;
        font-size: 12px;
        margin-top: 20px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 13px;
    }
    
    .about-left-image {
        width: 120px;
    }
    
    .prices-title,
    .contacts-title {
        font-size: 28px;
    }
}
/* ===== АДАПТИВ ДЛЯ КОНТАКТОВ ===== */

/* Планшеты */
@media (max-width: 992px) {
    .contacts {
        padding: 60px 0;
        min-height: auto;
    }

    .contacts-title {
        font-size: 70px;
    }

    .contacts-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .social-links {
        gap: 20px;
    }

    .social-card {
        width: 210px;
        padding: 25px 18px;
        min-height: 200px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-card h3 {
        font-size: 18px;
    }

    .social-card p {
        font-size: 13px;
        min-height: 35px;
    }

    .social-card span {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* Телефоны */
@media (max-width: 768px) {
    .contacts {
        padding: 50px 0;
        min-height: auto;
    }

    .contacts-content {
        padding: 0 20px;
    }

    .contacts-title {
        font-size: 40px;
    }

    .contacts-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        transform: translateX(-10px);
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .social-card {
        width: 100%;
        max-width: 320px;
        padding: 20px 25px;
        min-height: 70px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        border-radius: 20px;
        text-decoration: none;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .social-card:active {
        transform: scale(0.97);
    }

    /* Скрываем описание (быстрая связь, мои доски и т.д.) */
    .social-card p {
        display: none;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .social-card h3 {
        font-size: 18px;
        margin-bottom: 0;
        flex: 1;
        text-align: left;
    }

    .social-card span {
        display: none;  /* скрываем кнопку "Написать →" */
    }

    /* Telegram */
    .social-card.telegram {
        border-color: #0088cc40;
        background: #f0f7ff;
    }
    .social-card.telegram h3 {
        color: #0088cc;
    }

    /* Pinterest */
    .social-card.pinterest {
        border-color: #e6002340;
        background: #fff5f5;
    }
    .social-card.pinterest h3 {
        color: #e60023;
    }

    /* Behance */
    .social-card.behance {
        border-color: #1769ff40;
        background: #f5f7ff;
    }
    .social-card.behance h3 {
        color: #1769ff;
    }
}

/* Маленькие телефоны */
@media (max-width: 400px) {
    .contacts-title {
        font-size: 32px;
    }

    .contacts-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .social-card {
        padding: 16px;
        gap: 4px 12px;
        max-width: 100%;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-card h3 {
        font-size: 15px;
    }

    .social-card p {
        font-size: 12px;
    }

    .social-card span {
        font-size: 12px;
        padding: 4px 14px;
    }
}