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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-brand h1 {
    color: #f39c12;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #f39c12;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f39c12;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 4rem 5%;
    gap: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-text-block {
    flex: 1;
    margin-left: 8%;
    color: #ffffff;
}

.hero-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text-block h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(243,156,18,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243,156,18,0.4);
}

.hero-image-block {
    flex: 1;
    margin-right: -10%;
    margin-top: 5%;
}

.hero-image-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
}

.trust-strip {
    display: flex;
    justify-content: space-around;
    padding: 3rem 5%;
    background: #1a1a2e;
    color: #ffffff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.trust-text {
    display: block;
    font-size: 1rem;
}

.story-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background: #f8f9fa;
}

.story-offset-left {
    flex: 0.8;
    margin-left: -5%;
}

.story-offset-left img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: rotate(3deg);
}

.story-content-right {
    flex: 1.2;
    padding-right: 5%;
}

.story-content-right h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.problem-amplify {
    display: flex;
    gap: 3rem;
    padding: 5rem 10%;
    background: #ffffff;
    position: relative;
}

.problem-card {
    flex: 1;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(238,90,111,0.2);
}

.problem-card.offset-top {
    margin-top: -2rem;
}

.problem-card.offset-bottom {
    margin-top: 2rem;
}

.problem-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-grid {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header-offset {
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header-offset h3 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 5%;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.offset-mid {
    margin-top: 3rem;
}

.service-card.offset-low {
    margin-top: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #5568d3;
}

.form-section-offset {
    padding: 6rem 5%;
    background: #1a1a2e;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    margin-left: 15%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotate(-1deg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e67e22;
}

.testimonial-asymmetric {
    padding: 5rem 5%;
    background: #f8f9fa;
    display: flex;
    gap: 3rem;
}

.testimonial-block {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-block.offset-right {
    margin-top: -3rem;
}

.testimonial-block.offset-left {
    margin-top: 3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.why-section-overlap {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.why-content h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 5%;
}

.why-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.why-item.offset-mini {
    margin-top: 2rem;
}

.why-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    line-height: 1.6;
}

.urgency-block {
    padding: 5rem 10%;
    background: #ff6b6b;
    color: #ffffff;
}

.urgency-content-offset {
    max-width: 700px;
    margin-left: 10%;
}

.urgency-content-offset h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #ff6b6b;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links h5,
.footer-legal h5 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(243,156,18,0.4);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #229954;
}

.btn-cookie.reject {
    background: #e74c3c;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #c0392b;
}

.page-hero-offset {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    margin-top: -2rem;
}

.page-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
}

.about-story {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background: #ffffff;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image-offset {
    flex: 0.8;
    margin-right: -5%;
}

.about-image-offset img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
}

.values-asymmetric {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.values-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card.offset-up {
    margin-top: -2rem;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    line-height: 1.7;
}

.team-section {
    padding: 6rem 5%;
    background: #ffffff;
    text-align: center;
}

.team-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.team-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.team-stats-offset {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-item.offset-mini {
    margin-top: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #555;
}

.mission-offset {
    padding: 6rem 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.mission-content {
    max-width: 700px;
    margin-left: 10%;
}

.mission-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.cta-about h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-cta-large {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s;
    box-shadow: 0 5px 20px rgba(243,156,18,0.3);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
}

.services-detail-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.service-detail.offset-left {
    margin-left: -3%;
}

.service-detail.offset-right {
    margin-right: -3%;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-service-detail {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-service-detail:hover {
    background: #5568d3;
}

.guarantee-section-offset {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.guarantee-section-offset h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.guarantee-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee-item.offset-mini {
    margin-top: 1.5rem;
}

.guarantee-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    line-height: 1.6;
}

.faq-asymmetric {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.faq-asymmetric h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

.faq-item p {
    line-height: 1.7;
}

.cta-services {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.cta-services h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-section-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block.offset-left {
    margin-left: -3%;
}

.contact-info-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-detail strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.contact-detail p {
    line-height: 1.6;
}

.contact-map-block {
    flex: 1;
}

.contact-map-block.offset-right {
    margin-right: -3%;
    margin-top: 3rem;
}

.contact-map-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-map-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.map-placeholder img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.working-areas {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.working-areas h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.working-areas p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.areas-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.area-tag {
    background: #667eea;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.contact-cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.contact-cta-content {
    color: #ffffff;
}

.contact-cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.response-time-info {
    padding: 5rem 10%;
    background: #ffffff;
}

.response-time-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.response-grid {
    display: flex;
    gap: 2rem;
}

.response-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.response-item.offset-mini {
    margin-top: 2rem;
}

.response-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

.response-item p {
    line-height: 1.6;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    border: 5px solid #ffffff;
}

.thanks-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-main-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service-info {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.thanks-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.selected-service {
    font-size: 1.5rem;
    font-weight: 700;
}

.thanks-next-steps {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.step-content p {
    line-height: 1.6;
}

.thanks-contact-info {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home {
    display: inline-block;
    background: #ffffff;
    color: #27ae60;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-back-home:hover {
    transform: scale(1.05);
}

.btn-view-services {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: background 0.3s;
}

.btn-view-services:hover {
    background: rgba(255,255,255,0.3);
}

.thanks-trust {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.thanks-trust h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.trust-reasons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.trust-reason {
    flex: 1;
    max-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.trust-reason strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

.trust-reason p {
    line-height: 1.6;
}

.legal-page {
    padding: 5rem 10%;
    background: #ffffff;
    min-height: 60vh;
}

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

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.cookie-table th {
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #5568d3;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h2 {
        font-size: 2rem;
    }

    .hero-image-block {
        margin-right: 0;
        margin-top: 2rem;
    }

    .trust-strip {
        flex-direction: column;
        gap: 2rem;
    }

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

    .story-offset-left {
        margin-left: 0;
    }

    .problem-amplify {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .problem-card.offset-top,
    .problem-card.offset-bottom {
        margin-top: 0;
    }

    .service-cards-asymmetric {
        flex-direction: column;
    }

    .service-card.offset-mid,
    .service-card.offset-low {
        margin-top: 0;
    }

    .form-container {
        margin-left: 0;
        transform: none;
    }

    .testimonial-asymmetric {
        flex-direction: column;
    }

    .testimonial-block.offset-right,
    .testimonial-block.offset-left {
        margin-top: 0;
    }

    .why-grid-offset {
        flex-direction: column;
    }

    .why-item.offset-mini {
        margin-top: 0;
    }

    .urgency-content-offset {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .about-image-offset {
        margin-right: 0;
    }

    .values-grid-offset {
        flex-direction: column;
    }

    .value-card.offset-up {
        margin-top: 0;
    }

    .team-stats-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item.offset-mini {
        margin-top: 0;
    }

    .mission-content {
        margin-left: 0;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.offset-left,
    .service-detail.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

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

    .guarantee-item.offset-mini {
        margin-top: 0;
    }

    .contact-section-asymmetric {
        flex-direction: column;
    }

    .contact-info-block.offset-left,
    .contact-map-block.offset-right {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

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

    .response-item.offset-mini {
        margin-top: 0;
    }

    .trust-reasons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}