/* --- ШРИФТЫ И ОБНУЛЕНИЕ --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    /* Защищает от вылезания длинного текста (почты/ссылок) за экран на смартфонах */
    word-break: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020503;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- ШАПКА И МЕНЮ (HEADER) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

header.scrolled {
    padding: 20px 8%;
    background: rgba(2, 5, 3, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(23, 185, 120, 0.1);
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 200;
    color: #ffffff;
    flex-shrink: 0; /* Запрещаем логотипу сжиматься */
}

.logo span { 
    color: rgba(23, 185, 120, 0.65);
    font-weight: 400; 
    margin-left: 5px;
}

/* НАДЕЖНЫЙ ВАРИАНТ: nav просто занимает всё свободное место */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}

/* ИСПРАВЛЕНО ТУТ: margin: 0 auto; мягко и безопасно центрирует меню без поломок */
nav ul { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    margin: 0 auto; 
    padding: 0 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 8px;
    white-space: nowrap; /* Запрещает словам переноситься на новую строку */
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #17b978;
    box-shadow: 0 0 15px #17b978, 0 0 7px #17b978;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover { 
    color: #17b978; 
}

.lang { 
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    flex-shrink: 0; /* Запрещаем языкам сжиматься */
    display: none;  /* ВРЕМЕННО СКРЫТЬ БЛОК С ЭКРАНА */
}

.lang span {
    cursor: pointer;
    transition: 0.3s;
    margin: 0 3px;
}

.lang span:hover { color: #ffffff; }
.lang .active { color: #17b978; font-weight: 500; }

/* --- ГЛАВНЫЙ ЭКРАН (HERO) --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; 
    height: 100%;
    z-index: 1;
    overflow: hidden; 
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #020503 0%, #020503 15%, rgba(2, 5, 3, 0.4) 50%, transparent 100%),
                linear-gradient(0deg, #020503 8%, transparent 30%),
                linear-gradient(180deg, #020503 0%, transparent 15%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: contrast(1.05) brightness(0.9);
    animation: tigerBreathe 14s ease-in-out infinite;
    transform-origin: right center; 
}

@keyframes tigerBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

h1 {
    font-size: 4.2rem;
    font-weight: 200;
    letter-spacing: 8px;
    line-height: 1.15;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    border-left: 2px solid #17b978;
    padding-left: 25px;
    font-weight: 300;
}

/* --- СЕКЦИЯ УСЛУГ (SERVICES) --- */
.services-section {
    padding: 120px 8%;
    background-color: #020503;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.section-title span { color: #17b978; }

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

.service-card {
    background: linear-gradient(145deg, #040a07, #020503);
    border: 1px solid rgba(23, 185, 120, 0.1);
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    
    /* Карточка превращается в колонку, чтобы прижать кнопку к низу */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* Гарантирует одинаковую высоту */
}

.service-card:hover {
    border-color: #17b978;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-num {
    display: block;
    font-size: 0.65rem;
    color: #17b978;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #17b978;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.service-link:hover { border-bottom: 1px solid #17b978; }

/* КНОПКА WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #17b978; 
    color: #17b978;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.4s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.whatsapp-btn:hover {
    background: #17b978;
    color: #020503;
    box-shadow: 0 0 25px rgba(23, 185, 120, 0.4);
}

/* --- СЕКЦИЯ ОБ ОСНОВАТЕЛЕ --- */
.about-section {
    padding: 100px 10%;
    background: #020503;
    display: flex;
    justify-content: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 80px;
    align-items: center;
    max-width: 1200px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(23, 185, 120, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); 
    transition: transform 0.5s ease;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 5px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-content strong {
    color: #17b978;
    font-weight: 500;
}

/* --- ФУТЕР --- */
footer {
    padding: 60px 8% 40px;
    background-color: #020503;
    border-top: 1px solid rgba(23, 185, 120, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.footer-logo {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-logo span { color: #17b978; }

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover {
    color: #17b978;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px rgba(23, 185, 120, 0.5));
}

/* --- КНОПКА ВВЕРХ --- */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(2, 5, 3, 0.7); 
    border: 1px solid rgba(23, 185, 120, 0.1); 
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px); 
    color: rgba(23, 185, 120, 0.7); 
    padding: 15px;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

#backToTop:hover {
    border-color: rgba(23, 185, 120, 0.6);
    background: rgba(23, 185, 120, 0.05);
    color: #ffffff; 
    box-shadow: 0 0 25px rgba(23, 185, 120, 0.4); 
    transform: translateY(-5px);
}

#backToTop:hover svg {
    transform: translateY(-2px); 
}

#backToTop:active {
    transform: translateY(1px) scale(0.9);
}

/* --- МЕДИА-ЗАПРОСЫ (ОТ БОЛЬШИХ К МЕНЬШИМ) --- */

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

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .about-content h2 {
        text-align: center;
    }
}

/* --- СТИЛИ ДЛЯ МОБИЛЬНОГО ГАМБУРГЕРА --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 20px; /* Сдвигает гамбургер вправо от языков */
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- АДАПТИВНОСТЬ ДЛЯ СМАРТФОНОВ (МЕНЬШЕ 768px) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; letter-spacing: 4px; }
    
    /* Делаем правильные отступы в шапке, чтобы логотип и гамбургер были по краям */
    header { 
        padding: 20px 5%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Уменьшаем размер логотипа на мобильных, чтобы он гарантированно не разбивался на 2 строки */
    .logo {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .menu-toggle { display: flex; }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(4, 10, 7, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 120px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(23, 185, 120, 0.1);
        
        /* На мобильных элементы внутри nav строятся вертикально в колонку */
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul { 
        display: flex; 
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    nav a {
        font-size: 1rem;
    }

    /* Красиво оформляем блок языков внутри открытого мобильного меню */
    .lang {
        margin-top: 40px;
        font-size: 0.9rem;
        border-top: 1px solid rgba(23, 185, 120, 0.2);
        padding-top: 20px;
        width: 100%;
    }
    
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    footer { flex-direction: column; gap: 25px; text-align: center; padding: 40px 5%; }
    
    .services-section, #portfolio, #contacts { padding: 60px 5% !important; }
    .about-section { padding: 60px 5%; }
}

/* ==========================================================================
   КНОПКА В КАРТОЧКЕ УСЛУГ
   ========================================================================== */
.btn-service-card {
    display: inline-block;
    margin-top: 25px; /* Было margin-top: auto, стало 25пх меняем на фиксированный отступ: */
    padding: 12px 24px;
    border: 1px solid rgba(23, 185, 120, 0.3);
    color: #17b978;
    text-decoration: none;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    align-self: flex-start; /* Не дает кнопке растянуться на всю карточку */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-service-card:hover {
    border-color: #17b978;
    background: rgba(23, 185, 120, 0.04);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(23, 185, 120, 0.15);
    padding-left: 30px; /* Эффектный сдвиг вправо при наведении */
}


/* ==========================================================================
   НОВЫЕ ДОБАВЛЕННЫЕ СТИЛИ (НЕ КОНФЛИКТУЮТ С ОРИГИНАЛЬНЫМИ СТИЛЯМИ)
   ========================================================================== */

/* Доступность */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Стиль для новой премиальной кнопки CTA */
.btn-cta {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    border: 1px solid #17b978;
    color: #17b978;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.1);
}

.btn-cta:hover {
    background: #17b978;
    color: #020503;
    box-shadow: 0 0 25px rgba(23, 185, 120, 0.4);
    transform: translateY(-2px);
}

/* СТИЛИ ДЛЯ SEO-БЛОКА С ГОРОДАМИ */
.seo-local-section {
    padding: 100px 8%;
    background: #020503;
    border-top: 1px solid rgba(23, 185, 120, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}
.seo-local-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px;
}
.seo-local-block h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.seo-local-block h3 span {
    color: #17b978;
}
.seo-local-block strong {
    color: #17b978; 
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-local-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .seo-local-section {
        padding: 60px 8%;
    }
}


/* ==========================================================================
   СТИЛИ, УСПЕШНО ВЫНЕСЕННЫЕ ИЗ HTML-РАЗМЕТКИ ДЛЯ ЧИСТОТЫ КОДА
   ========================================================================== */

/* Цены в карточках услуг */
.service-price {
    color: rgba(255, 255, 255, 0.4); 
    font-size: 0.75rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-bottom: 12px; 
    font-weight: 500;
}

/* Секция Портфолио */
.portfolio-section {
    padding: 120px 8%; 
    background: #020503;
}

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

.portfolio-item-link {
    text-decoration: none;
}

.portfolio-card-custom {
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    cursor: pointer;
}

.portfolio-logo-bg {
    width: 100%; 
    height: 200px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 25px; 
    background: rgba(255,255,255,0.02); 
    border-radius: 4px;
}

.portfolio-img-effect {
    max-width: 80%; 
    max-height: 120px; 
    filter: brightness(0) invert(1); 
    opacity: 0.8; 
    transition: 0.5s;
}

.portfolio-card-custom h3 {
    color: #fff; 
    margin-bottom: 10px;
}

.portfolio-btn-text {
    margin-top: auto; 
    padding-top: 20px; 
    color: #17b978; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
}

/* Секция Контакты */
.contacts-section-custom {
    padding: 120px 8%; 
    background: #020503; 
    position: relative;
}

.contacts-title-center {
    text-align: center; 
    margin-bottom: 20px;
}

.description-contacts-center {
    margin: 0 auto 50px; 
    text-align: center; 
    border-left: none; 
    padding-left: 0; 
    max-width: 600px;
}

.form-wrapper-box {
    max-width: 600px; 
    margin: 0 auto 60px; 
    background: linear-gradient(145deg, #040a07, #020503); 
    border: 1px solid rgba(23, 185, 120, 0.1); 
    padding: 40px; 
    border-radius: 4px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-group-field {
    margin-bottom: 25px; 
    text-align: left;
}

.field-margin-large {
    margin-bottom: 30px;
}

.form-label-style {
    color: rgba(255,255,255,0.4); 
    font-size: 0.7rem; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 8px;
}

.form-input-style, .form-textarea-style {
    width: 100%; 
    padding: 14px; 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(23, 185, 120, 0.1); 
    color: #fff; 
    font-family: inherit; 
    font-size: 0.9rem; 
    border-radius: 2px; 
    transition: 0.3s; 
    outline: none;
}

.form-textarea-style {
    resize: vertical;
}

.form-btn-submit {
    width: 100%; 
    padding: 16px; 
    background: transparent; 
    border: 1px solid #17b978; 
    color: #17b978; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 500; 
    cursor: pointer; 
    transition: all 0.4s; 
    box-shadow: 0 0 15px rgba(23, 185, 120, 0.05);
}

.form-status-style {
    margin-top: 20px; 
    font-size: 0.85rem; 
    display: none; 
    letter-spacing: 0.5px;
}

.contact-links-row {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    flex-wrap: wrap;
}

.email-link-custom {
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 300; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.whatsapp-business-btn {
    color: #17b978; 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 400; 
    letter-spacing: 1px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid rgba(23, 185, 120, 0.2); 
    padding: 10px 20px; 
    border-radius: 2px; 
    background: rgba(23, 185, 120, 0.02);
}

.whatsapp-btn-text {
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    font-weight: 500;
}

/* Стили подвала (Footer) */
.footer-custom-style {
    padding: 60px 8% 40px; 
    background-color: #020503; 
    border-top: 1px solid rgba(23, 185, 120, 0.05); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px;
}

.footer-logo-custom {
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.3);
}

.brand-green-color {
    color: #17b978;
}

.footer-links-container {
    display: flex; 
    gap: 25px;
}

.footer-link-item {
    color: rgba(255,255,255,0.4); 
    text-decoration: none; 
    font-size: 0.7rem; 
    letter-spacing: 1px; 
    transition: 0.3s;
}

.footer-socials-container {
    display: flex; 
    gap: 20px;
}

.footer-social-icon-link {
    color: rgba(255, 255, 255, 0.4); 
    transition: 0.3s; 
    display: flex; 
    align-items: center;
}

.footer-copyright-text {
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.3); 
    letter-spacing: 1px;
}

/* Окно согласия на Cookies */
.cookie-banner-box {
    position: fixed; 
    bottom: 30px; 
    left: 30px; 
    /* Делаем блок адаптивным: */
    width: calc(100% - 60px); /* 100% ширины минус отступы по 30px с каждой стороны */
    max-width: 420px;         /* Максимальная ширина, чтобы не было слишком широким */
    background: rgba(4, 10, 7, 0.85); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border: 1px solid rgba(23, 185, 120, 0.2); 
    padding: 20px; 
    z-index: 9999; 
    display: none; 
    border-radius: 4px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.cookie-banner-text {
    font-size: 0.8rem; 
    color: rgba(255,255,255,0.8); 
    line-height: 1.5; 
    margin-bottom: 20px;
}

.cookie-title {
    color: #17b978; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 5px;
}

.cookie-link {
    color: #17b978; 
    text-decoration: underline;
}

.cookie-buttons-row {
    display: flex; 
    gap: 10px;
}

.cookie-btn-accept {
    flex: 1; 
    padding: 10px; 
    background: #17b978; 
    border: none; 
    color: #020503; 
    cursor: pointer; 
    font-size: 0.65rem; 
    font-weight: 600; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: 0.3s;
}

.cookie-btn-refuse {
    flex: 1; 
    padding: 10px; 
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.2); 
    color: #fff; 
    cursor: pointer; 
    font-size: 0.65rem; 
    letter-spacing: 1px; 
    text-transform: uppercase;
}