
/* Block 1 */
.hero-section {
position: relative;
width: 100%;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: #0f172a;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: brightness(0.85);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
z-index: 2;
}

.hero-content-wrapper {
position: relative;
z-index: 3;
width: 100%;
max-width: 1200px;
padding: 2rem;
}

.hero-content {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1.5rem;
max-width: 650px;
animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
opacity: 0;
transform: translateY(30px);
}

@keyframes fadeSlideUp {
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-badge {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border-radius: 50px;
color: #38bdf8;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
color: #ffffff;
line-height: 1.1;
margin: 0;
letter-spacing: -0.02em;
}

.hero-text {
font-size: 1.25rem;
color: #cbd5e1;
line-height: 1.6;
margin: 0;
}

.hero-actions {
margin-top: 0.5rem;
}

.hero-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 1rem 2.5rem;
background-color: #2563eb;
color: #ffffff;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
border: 1px solid transparent;
}

.hero-btn:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

@media (max-width: 992px) {
.hero-title {
font-size: 2.75rem;
}
}

@media (max-width: 768px) {
.hero-section {
min-height: 70vh;
}

.hero-content {
align-items: center;
text-align: center;
}

.hero-title {
font-size: 2.25rem;
}

.hero-text {
font-size: 1.1rem;
}
}

/* Block 2 */
.future-grid-section {
padding: 6rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
overflow: hidden;
position: relative;
z-index: 1;
}
.grid-header-wrapper {
max-width: 800px;
margin: 0 auto 4rem auto;
position: relative;
}
.grid-prelabel {
display: inline-block;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
color: #6c757d;
margin-bottom: 1rem;
padding: 0.5rem 1rem;
background: #fff;
border-radius: 50px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.grid-title {
font-size: 3.5rem;
font-weight: 800;
letter-spacing: -1px;
color: #212529;
margin-bottom: 1.5rem;
line-height: 1.1;
}
.grid-subtitle {
font-size: 1.15rem;
color: #6c757d;
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}
.scrolling-x-wrapper {
width: 100%;
overflow-x: auto;
padding-bottom: 2rem;
padding-left: max(2rem, calc((100vw - 1320px) / 2 + 2rem));
padding-right: 2rem;
-ms-overflow-style: none;
scrollbar-width: none;
}
.scrolling-x-wrapper::-webkit-scrollbar {
display: none;
}
.grid-container {
display: flex;
gap: 2rem;
width: max-content;
}
.grid-card {
width: 320px;
height: 520px;
background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.8);
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
display: flex;
flex-direction: column;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
overflow: hidden;
position: relative;
}
.grid-card:hover {
transform: translateY(-12px) scale(1.02);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
background: rgba(255, 255, 255, 0.85);
}
.grid-card.featured-card {
background: linear-gradient(145deg, #ffffff, #f0f4ff);
border: 2px solid rgba(13, 110, 253, 0.1);
}
.card-visual {
height: 240px;
width: 100%;
position: relative;
overflow: hidden;
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.card-visual img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.grid-card:hover .card-visual img {
transform: scale(1.1);
}
.visual-overlay {
position: absolute;
top: 1rem;
left: 1rem;
z-index: 2;
}
.badge-trending, .badge-new {
background: #0d6efd;
color: white;
font-size: 0.7rem;
font-weight: 700;
padding: 0.3rem 0.8rem;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}
.badge-new {
background: #198754;
box-shadow: 0 4px 10px rgba(25, 135, 84, 0.3);
}
.featured-tag {
position: absolute;
top: 1rem;
right: 1rem;
background: #ffc107;
color: #212529;
font-size: 0.7rem;
font-weight: 800;
padding: 0.3rem 0.8rem;
border-radius: 20px;
z-index: 5;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card-body {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.card-category {
font-size: 0.8rem;
color: #0d6efd;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 0.5rem;
}
.card-title {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #212529;
line-height: 1.2;
}
.card-desc {
font-size: 0.95rem;
color: #495057;
margin-bottom: auto;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px dashed rgba(0,0,0,0.1);
}
.price-block {
display: flex;
flex-direction: column;
}
.current-price {
font-size: 1.5rem;
font-weight: 800;
color: #212529;
line-height: 1;
}
.old-price {
font-size: 0.9rem;
color: #adb5bd;
text-decoration: line-through;
font-weight: 500;
margin-top: 2px;
}
.action-btn {
width: 48px;
height: 48px;
border-radius: 50%;
border: none;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
outline: none;
}
.add-btn {
background: #212529;
color: #fff;
}
.add-btn:hover {
background: #0d6efd;
transform: rotate(90deg);
box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}
@media (max-width: 992px) {
.grid-title {
font-size: 2.5rem;
}
}
@media (max-width: 576px) {
.grid-header-wrapper {
padding: 0 1.5rem;
}
.grid-title {
font-size: 2rem;
}
.future-grid-section {
padding: 4rem 0;
}
.scrolling-x-wrapper {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
}

/* Block 3 */
.immersive-showcase {
--primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
--accent-color: #38bdf8;
--accent-glow: rgba(56, 189, 248, 0.5);
--text-main: #f8fafc;
--text-muted: #94a3b8;
--card-bg: rgba(255, 255, 255, 0.03);
background: var(--primary-gradient);
padding: 6rem 2rem;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}

.immersive-showcase::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
pointer-events: none;
}

.content-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 1200px;
width: 100%;
z-index: 1;
}

.text-column {
display: flex;
flex-direction: column;
justify-content: center;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.75rem;
color: var(--accent-color);
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}

.display-title {
font-size: 3.5rem;
line-height: 1.1;
font-weight: 800;
color: var(--text-main);
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}

.description-text {
font-size: 1.125rem;
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 500px;
}

.features-list {
list-style: none;
padding: 0;
margin: 0 0 3rem 0;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.feature-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}

.icon-wrapper {
width: 48px;
height: 48px;
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-color);
font-size: 1.25rem;
flex-shrink: 0;
}

.feature-content {
display: flex;
flex-direction: column;
}

.feature-title {
font-weight: 700;
color: var(--text-main);
font-size: 1rem;
}

.feature-detail {
font-size: 0.875rem;
color: var(--text-muted);
}

.action-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.primary-btn {
background: var(--accent-color);
color: #0f172a;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px var(--accent-glow);
}

.primary-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px var(--accent-glow);
filter: brightness(1.1);
}

.secondary-btn {
color: var(--text-main);
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}

.secondary-btn:hover {
background: rgba(255, 255, 255, 0.05);
border-color: var(--text-main);
}

.visual-column {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.product-stage {
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.glow-effect {
position: absolute;
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
filter: blur(60px);
z-index: 0;
opacity: 0.6;
}

.product-image {
width: 100%;
max-width: 500px;
height: auto;
border-radius: 20px;
z-index: 2;
filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
transition: transform 0.5s ease;
}

.product-stage:hover .product-image {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-ui-card {
position: absolute;
right: -20px;
bottom: 60px;
width: 180px;
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 1rem;
z-index: 3;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
animation: float 4s ease-in-out infinite;
}

.ui-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.75rem;
}

.ui-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #ef4444;
}

.ui-dot.green {
background-color: #22c55e;
box-shadow: 0 0 10px #22c55e;
}

.ui-label {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-main);
text-transform: uppercase;
}

.ui-graph {
display: flex;
justify-content: space-between;
align-items: flex-end;
height: 40px;
}

.graph-bar {
width: 8px;
background: var(--accent-color);
border-radius: 4px;
opacity: 0.7;
animation: pulse-graph 2s infinite;
}

.graph-bar:nth-child(2) { animation-delay: 0.2s; }
.graph-bar:nth-child(3) { animation-delay: 0.4s; }
.graph-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

@keyframes pulse-graph {
0%, 100% { opacity: 0.4; }
50% { opacity: 1; }
}

@media (max-width: 992px) {
.content-container {
grid-template-columns: 1fr;
text-align: center;
}

.features-list {
align-items: center;
}

.action-group {
justify-content: center;
}

.floating-ui-card {
right: 50%;
bottom: -20px;
transform: translateX(50%);
animation: none;
}

.product-image {
max-width: 350px;
transform: none;
}

.product-stage:hover .product-image {
transform: scale(1.02);
}
}

/* Block 4 */
.contact-section-2026 {
position: relative;
width: 100%;
padding: 8rem 1.5rem;
background-color: #050507;
color: #ffffff;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
min-height: 80vh;
}

.contact-section-2026::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08), transparent 60%);
pointer-events: none;
}

.contact-container {
max-width: 800px;
width: 100%;
z-index: 2;
}

.contact-header-block {
text-align: center;
margin-bottom: 4rem;
}

.contact-main-title {
font-size: 3.5rem;
font-weight: 800;
letter-spacing: -0.05rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, #ffffff 0%, #a0aec0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.contact-subtitle {
font-size: 1.125rem;
color: #94a3b8;
max-width: 500px;
margin: 0 auto;
line-height: 1.6;
}

.contact-form-wrapper {
position: relative;
padding: 3rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 24px;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.decoration-line {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 3px;
background: #10b981;
border-radius: 0 0 4px 4px;
box-shadow: 0 0 15px #10b981;
}

.input-group-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin-bottom: 1.5rem;
}

.message-field-wrapper {
margin-bottom: 2rem;
}

.floating-field {
display: flex;
flex-direction: column;
}

.floating-field.full-width {
width: 100%;
}

.field-label {
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #10b981;
margin-bottom: 0.75rem;
}

.field-input {
width: 100%;
padding: 1rem 1.25rem;
font-size: 1rem;
color: #ffffff;
background: rgba(15, 23, 42, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
transition: all 0.3s ease;
font-family: inherit;
}

.field-input::placeholder {
color: #4b5563;
}

.field-input:focus {
outline: none;
border-color: #10b981;
background: rgba(15, 23, 42, 0.9);
box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.field-textarea {
resize: vertical;
min-height: 140px;
}

.form-action-row {
display: flex;
justify-content: center;
margin-top: 1rem;
}

.submit-trigger-btn {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2.5rem;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #ffffff;
background: linear-gradient(90deg, #059669, #10b981);
border: none;
border-radius: 50px;
cursor: pointer;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}

.submit-trigger-btn:hover {
transform: translateY(-2px);
box-shadow: 0 20px 35px -5px rgba(16, 185, 129, 0.5);
background: linear-gradient(90deg, #047857, #059669);
}

.submit-trigger-btn:active {
transform: translateY(1px);
}

.btn-icon {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
transition: transform 0.3s ease;
}

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

.background-grid-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image: 
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
border-radius: 24px;
pointer-events: none;
}

@media (max-width: 768px) {
.contact-section-2026 {
padding: 4rem 1rem;
min-height: auto;
}

.contact-main-title {
font-size: 2.5rem;
}

.contact-form-wrapper {
padding: 2rem 1.5rem;
}

.input-group-wrapper {
grid-template-columns: 1fr;
gap: 1rem;
}
}
