/* scoped style strony (z tresci produkcyjnych szablonow) */

.ty-hero {
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(135deg, #232D4B 0%, #2d3a5c 50%, #1a2238 100%);
padding: 120px 20px 80px;
position: relative;
overflow: hidden;
}
.ty-hero::before {
content: '';
position: absolute;
top: -150px;
right: -150px;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(129, 189, 81, 0.08);
filter: blur(80px);
}
.ty-hero::after {
content: '';
position: absolute;
bottom: -100px;
left: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(129, 189, 81, 0.06);
filter: blur(60px);
}
.ty-content {
max-width: 600px;
position: relative;
z-index: 1;
}
.ty-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: rgba(129, 189, 81, 0.15);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 32px;
}
.ty-icon svg {
width: 40px;
height: 40px;
stroke: #81BD51;
}
.ty-title {
font-family: 'Inter', sans-serif;
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
color: #fff;
margin-bottom: 16px;
line-height: 1.2;
}
.ty-subtitle {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin-bottom: 40px;
}
.ty-card {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 32px;
margin-bottom: 32px;
text-align: left;
}
.ty-card-title {
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 600;
color: #81BD51;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.ty-steps {
list-style: none;
padding: 0;
margin: 0;
}
.ty-steps li {
display: flex;
align-items: flex-start;
gap: 12px;
color: rgba(255, 255, 255, 0.85);
font-size: 15px;
line-height: 1.5;
margin-bottom: 12px;
}
.ty-steps li:last-child {
margin-bottom: 0;
}
.ty-steps li svg {
width: 20px;
height: 20px;
stroke: #81BD51;
flex-shrink: 0;
margin-top: 2px;
}
.ty-actions {
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
}
.ty-btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: #81BD51;
color: #fff;
font-size: 16px;
font-weight: 600;
padding: 14px 32px;
border-radius: 10px;
text-decoration: none;
transition: background 0.2s, transform 0.2s;
}
.ty-btn-primary:hover {
background: #6fa043;
transform: translateY(-1px);
}
.ty-btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
text-decoration: none;
transition: color 0.2s;
}
.ty-btn-secondary:hover {
color: #fff;
}

