/* Reset and Base Styles - standard reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Неоновая палитра - темный фон с яркими акцентами */
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --neon-blue: #0066ff;
    --neon-green: #00ff88;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 35, 0.6);
    --text-light: #e0e0e8;
    --text-muted: #8a8a9a;
    --border-neon: rgba(0, 243, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 243, 255, 0.3);
    --shadow-neon-pink: 0 0 20px rgba(255, 0, 255, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

/* Смешанные шрифты - заголовки используют Space Grotesk */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* Частицы на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    animation: particleMove 20s ease-in-out infinite;
}

/* Редкие толстые диагональные полосы на фоне */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            125deg,
            transparent 0px,
            transparent 480px,
            rgba(0, 243, 255, 0.06) 480px,
            rgba(0, 243, 255, 0.06) 600px
        ),
        repeating-linear-gradient(
            -35deg,
            transparent 0px,
            transparent 520px,
            rgba(255, 0, 255, 0.05) 520px,
            rgba(255, 0, 255, 0.05) 640px
        );
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Геометрический паттерн на фоне */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(150deg, var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(30deg, var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(150deg, var(--neon-cyan) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 0 0, 30px 30px, 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-neon);
    color: var(--text-light);
    padding: 30px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--neon-cyan);
    transition: all 0.3s;
}

.cookie-content a:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.cookie-btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.4);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.6);
}

/* Header - Sticky с Glassmorphism */
.header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-neon);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    transition: all 0.3s;
}

.logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::before {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Полноэкранное меню */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-content {
    text-align: center;
}

.fullscreen-menu-link {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    margin: 30px 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.fullscreen-menu.active .fullscreen-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu-link:hover {
    filter: brightness(1.3);
    transform: scale(1.1);
}

/* Hero Section - Параллакс + Градиентная анимация */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.1) 0%,
        rgba(157, 0, 255, 0.15) 50%,
        rgba(255, 0, 255, 0.1) 100%);
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 1000px;
    padding: 0 40px;
    width: 100%;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    color: var(--text-light);
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 18px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(0, 243, 255, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--neon-cyan);
    width: 40px;
    border-radius: 7px;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-neon);
    color: var(--neon-cyan);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero-nav:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
    left: 40px;
}

.hero-nav.next {
    right: 40px;
}

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

/* Section Styles - Просторные отступы */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 84px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Services Section - Glassmorphism карточки */
.services {
    background: var(--bg-darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border: 1px solid var(--border-neon);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    /* Форма параллелограмма — диагональные линии вместо квадрата */
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    -webkit-clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

/* Диагональные линии на карточке */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: repeating-linear-gradient(
        125deg,
        transparent 0px,
        transparent 24px,
        rgba(0, 243, 255, 0.08) 24px,
        rgba(0, 243, 255, 0.08) 26px
    );
    opacity: 1;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 32px,
        rgba(255, 0, 255, 0.05) 32px,
        rgba(255, 0, 255, 0.05) 34px
    );
    opacity: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    background-image: repeating-linear-gradient(
        125deg,
        transparent 0px,
        transparent 24px,
        rgba(0, 243, 255, 0.15) 24px,
        rgba(0, 243, 255, 0.15) 26px
    );
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.3);
}

/* Чётные карточки — срез в другую сторону */
.service-card:nth-child(even) {
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    -webkit-clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-neon);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    transform: rotate(5deg) scale(1.1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* Process Section - Аккордеон с Glassmorphism */
.process {
    background: var(--bg-dark);
    position: relative;
}

.process-accordion {
    max-width: 1100px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.accordion-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.accordion-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
}

.accordion-item.active {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.accordion-header {
    padding: 35px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: rgba(0, 243, 255, 0.05);
}

.accordion-header h3 {
    font-size: 26px;
    color: var(--text-light);
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--neon-cyan);
    transition: transform 0.4s;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--neon-pink);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
    padding: 0 40px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 40px 35px;
}

.accordion-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.accordion-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 20px;
}

/* Technologies Section */
.technologies {
    background: var(--bg-darker);
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.tech-item {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-neon);
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.9);
}

.tech-item.animate {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    transform: scale(1.05);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.tech-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.tech-item p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Portfolio Section - Асимметричная сетка 70/30 */
.portfolio {
    background: var(--bg-dark);
    position: relative;
}

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

.portfolio-item {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-neon);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 25px 70px rgba(255, 0, 255, 0.4);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15);
}

.portfolio-info {
    padding: 35px;
}

.portfolio-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.portfolio-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.portfolio-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

/* Why Choose Us Section */
.why-choose {
    background: var(--bg-darker);
    position: relative;
}

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

.feature-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.3;
    line-height: 1;
}

.feature-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 17px;
}

/* Contact Section - Radial Layout */
.contact {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Contact Type Selector */
.contact-type-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-type-btn {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    padding: 18px 32px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.contact-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-type-btn:hover::before {
    left: 100%;
}

.contact-type-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.2);
}

.contact-type-btn.active {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

.contact-type-icon {
    font-size: 24px;
    line-height: 1;
}

.contact-type-label {
    font-size: 15px;
}

/* Contact Form Layout */
.contact-radial-layout {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


/* Central Form Wrapper */
.contact-form-wrapper {
    position: relative;
    z-index: 10;
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid var(--border-neon);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 243, 255, 0.2);
    transition: all 0.4s;
}

.contact-form-wrapper:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 243, 255, 0.4);
}


/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.form-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group {
    position: relative;
    transition: transform 0.3s;
}

.form-group-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.form-group-animated.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-label {
    display: block;
    color: var(--neon-cyan);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-light);
    transition: all 0.4s;
    position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f3ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

/* Animated Form Line */
.form-line {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    border-radius: 2px;
}

.form-input:focus ~ .form-line,
.form-select:focus ~ .form-line,
.form-textarea:focus ~ .form-line {
    transform: scaleX(1);
}

.form-line-textarea {
    bottom: 16px;
}

/* Submit Button */
.form-submit-wrapper {
    margin-top: 20px;
    text-align: center;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
    font-size: 18px;
    border-radius: 16px;
    min-width: 220px;
}

.btn-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-icon {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-submit:hover .btn-text {
    transform: translateX(-5px);
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s;
}

.btn-submit:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.form-submit-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.submit-info-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

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


/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-neon);
    position: relative;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--neon-cyan);
    font-weight: 700;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 16px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-neon);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
}

.business-id {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

/* Policy Pages Styles */
.policy-page {
    padding: 140px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
    position: relative;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid var(--border-neon);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.policy-page h1 {
    font-size: 56px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.policy-page h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.policy-page h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    font-weight: 700;
}

.policy-page p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.policy-page ul,
.policy-page ol {
    margin-left: 40px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.policy-page li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 17px;
}

.policy-page a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.policy-page a:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.policy-back {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.policy-back:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 60px 40px;
    position: relative;
}

.thanks-content {
    text-align: center;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 16px;
    border: 1px solid var(--border-neon);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 64px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 900;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Декоративные линии */
.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    margin: 60px 0;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* ========== Inner Pages: Page Hero ========== */
.page-main {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.08) 0%, rgba(157, 0, 255, 0.12) 50%, rgba(255, 0, 255, 0.08) 100%);
    z-index: 0;
}

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

.page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ========== Bento Grid (Services page) ========== */
.bento-section {
    background: var(--bg-darker);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-wide {
    grid-column: span 2;
}

.bento-item-tall {
    grid-row: span 2;
}

.bento-card {
    height: 100%;
    min-height: 200px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid var(--border-neon);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.08), rgba(255, 0, 255, 0.08));
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 243, 255, 0.25);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ========== Timeline (Process page) ========== */
.timeline-section {
    background: var(--bg-dark);
}

.container-narrow {
    max-width: 900px;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 2px;
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

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

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    z-index: 2;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    background: var(--neon-cyan);
}

.timeline-content {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-neon);
    transition: all 0.4s;
}

.timeline-content:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 45px rgba(0, 243, 255, 0.2);
}

.timeline-step {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 17px;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 18px;
}

/* ========== CTA Strip ========== */
.cta-strip {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 60px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-neon);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-strip-inner h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.contact-page-section .section-header {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .contact-radial-layout {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-lines {
        display: none;
    }
    
    
    .contact-type-selector {
        margin-bottom: 40px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-item-wide {
        grid-column: span 2;
    }
    
    .bento-item-tall {
        grid-row: span 1;
    }
    
    .page-hero-title {
        font-size: 52px;
    }
    
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-strip-inner h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-nav {
        display: none;
    }

    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }

    .services-grid,
    .tech-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-container {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
    
    .fullscreen-menu-link {
        font-size: 42px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item-large,
    .bento-item-wide {
        grid-column: span 1;
    }
    
    .bento-card {
        min-height: 180px;
        padding: 30px 25px;
    }
    
    .page-hero {
        padding: 120px 0 70px;
    }
    
    .page-hero-title {
        font-size: 42px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 11px;
    }
    
    .timeline-marker {
        left: -40px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 25px 25px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }

    .policy-page h1 {
        font-size: 36px;
    }

    .policy-page h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-type-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-type-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .page-hero-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .cta-strip-inner {
        padding: 30px 20px;
    }
    
    .cta-strip-inner h2 {
        font-size: 24px;
    }
}
