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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-offset-left {
    flex: 1;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-offset-right {
    flex: 1;
    position: relative;
    margin-top: -80px;
    margin-right: -5%;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 500px;
}

.intro-curiosity {
    padding: 120px 20px;
    background: var(--bg-light);
    position: relative;
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    flex: 0.9;
    transform: translateY(-40px);
}

.intro-block-right {
    flex: 1.1;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(40px);
}

.cta-inline {
    text-align: center;
    padding: 40px 20px;
}

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateX(10px);
}

.story-section {
    padding: 100px 20px;
}

.container-story {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-offset {
    flex: 1;
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-30px);
}

.story-content-offset {
    flex: 1;
    transform: translateX(30px);
}

.story-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
    color: inherit;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-card h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-block-centered {
    text-align: center;
    padding: 80px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.cta-block-centered h3 {
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.insight-reveal {
    padding: 120px 20px;
}

.insight-left {
    flex: 1;
    position: relative;
}

.insight-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.insight-right {
    flex: 1;
    padding-left: 60px;
}

.insight-bold {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.insight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-building {
    padding: 100px 20px;
    background: var(--bg-light);
}

.container-trust {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-title {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.testimonials-inline {
    padding: 100px 20px;
}

.container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 120px 20px;
    background: var(--bg-white);
}

.container-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large {
    flex: 1 1 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.benefit-large h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-small {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cta-sticky.visible {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d97706;
    transform: scale(1.05);
    color: var(--bg-white);
}

.services-pricing {
    padding: 100px 20px;
    background: var(--bg-light);
}

.container-services {
    max-width: 1300px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-service {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: var(--bg-white);
    text-align: center;
}

.container-urgency {
    max-width: 800px;
    margin: 0 auto;
}

.container-urgency h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.main-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-cta {
    padding: 100px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.container-final h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-final {
    display: inline-block;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-final:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background: #059669;
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 20px;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image-box {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.team-section {
    padding: 100px 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stats-section {
    padding: 100px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 1.1rem;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-light);
}

.services-detailed {
    padding: 100px 20px;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.service-content {
    flex: 1;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.featured-service {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 80px;
}

.service-badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comparison-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.cta-services {
    padding: 80px 20px;
    text-align: center;
}

.contact-section {
    padding: 100px 20px;
}

.container-contact {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-description {
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-section {
    padding: 100px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-contact {
    padding: 80px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.cta-contact h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 150px 20px 80px;
    text-align: center;
}

.container-thanks {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin: 2rem 0;
    font-weight: 600;
}

.thanks-info {
    margin: 1.5rem 0;
}

.thanks-subinfo {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--border-color);
}

.next-steps {
    padding: 100px 20px;
    background: var(--bg-light);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.resources-section {
    padding: 100px 20px;
}

.resources-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.legal-page {
    padding: 150px 20px 80px;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
}

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-right {
        margin-top: 40px;
        margin-right: 0;
    }

    .hero-image {
        height: 400px;
        border-radius: 20px;
        transform: none;
    }

    .container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-left,
    .intro-block-right {
        transform: none;
    }

    .container-story {
        flex-direction: column;
    }

    .story-img {
        transform: none;
    }

    .story-content-offset {
        transform: none;
    }

    .service-full,
    .service-full.reverse {
        flex-direction: column;
    }

    .story-grid {
        flex-direction: column;
    }
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

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

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

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

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

    .service-card {
        min-width: 100%;
    }

    .main-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 10px 20px;
    }

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

    .btn-primary-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}