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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7ab8;
    --accent-color: #f59e0b;
    --dark-bg: #0f2940;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --success: #22c55e;
    --border-color: #e2e8f0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-offset {
    margin-top: 80px;
    padding: 4rem 5% 3rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    position: relative;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(2deg);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245,158,11,0.4);
}

.intro-asymmetric {
    padding: 5rem 5%;
    background: var(--light-bg);
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.intro-text-block {
    flex: 2;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-stat-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-card.offset {
    margin-left: 3rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.problem-section {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
    position: relative;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: rotate(-3deg);
}

.problem-content {
    flex: 1.2;
}

.problem-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.problem-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.problem-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.insight-cards {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a54 100%);
}

.section-title-offset {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
    margin-left: 8%;
}

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.insight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.insight-card.card-elevated {
    transform: translateY(-2rem);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.insight-card.card-wide {
    flex: 1 1 100%;
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.insight-card.card-elevated .card-number {
    color: white;
    opacity: 0.3;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-card.card-elevated h4 {
    color: white;
}

.insight-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.insight-card.card-elevated p {
    color: rgba(255,255,255,0.95);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-showcase {
    padding: 6rem 5%;
    background: white;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.showcase-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-block {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-block.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

.service-block.secondary {
    transform: translateY(2rem);
}

.service-block.accent {
    border: 3px solid var(--accent-color);
}

.service-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-block.primary h3 {
    color: white;
}

.service-block p {
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-block.primary p {
    color: rgba(255,255,255,0.95);
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-block.primary .price-tag {
    color: white;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-block.primary .btn-service {
    background: var(--accent-color);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-block.primary:hover {
    transform: scale(1.08);
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.trust-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.trust-content-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonials-asymmetric {
    padding: 6rem 5%;
    background: white;
}

.testimonials-asymmetric h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.break-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.break-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,77,122,0.9), rgba(45,122,184,0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5%;
    color: white;
}

.break-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.break-overlay ul {
    list-style: none;
    font-size: 1.3rem;
}

.break-overlay li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
}

.break-overlay li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-form-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45,122,184,0.1);
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.3);
}

.final-cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-large:hover {
    background: #d97706;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-block p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

.footer-block li {
    margin-bottom: 0.75rem;
}

.footer-block a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--accent-color);
}

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

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(245,158,11,0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(245,158,11,0.5);
}

.page-header-offset {
    margin-top: 80px;
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--light-bg), white);
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 5%;
    background: white;
}

.story-content-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mission-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.mission-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.mission-block {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.mission-block.offset {
    transform: translateY(-2rem);
}

.mission-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.mission-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.values-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.values-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.values-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,77,122,0.9), rgba(45,122,184,0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    color: white;
}

.values-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.values-overlay ul {
    list-style: none;
    font-size: 1.3rem;
}

.values-overlay li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
}

.values-overlay li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2rem;
}

.team-approach {
    padding: 6rem 5%;
    background: white;
}

.team-approach h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.approach-item {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    max-width: 500px;
    position: relative;
    transition: all 0.3s ease;
}

.approach-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-different {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.different-content {
    max-width: 1000px;
    margin: 0 auto;
}

.different-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.comparison-item {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.comparison-item h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-item.highlight h4 {
    color: white;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.comparison-item.highlight .comparison-list li {
    color: rgba(255,255,255,0.95);
}

.cta-about {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.services-intro {
    padding: 3rem 5%;
    background: white;
}

.intro-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-large {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 5%;
    background: white;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 20px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
    background: white;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-info {
    flex: 1.3;
}

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

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.price-note {
    font-size: 1rem;
    color: var(--text-light);
}

.btn-service-detail {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.3);
}

.service-guarantee {
    padding: 5rem 5%;
    background: var(--dark-bg);
    color: white;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.guarantee-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.guarantee-note {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.services-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-split {
    padding: 5rem 5%;
    background: white;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-detail h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-detail p,
.contact-detail a {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--accent-color);
}

.contact-note {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.6;
}

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

.contact-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.response-info {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.response-content {
    max-width: 1100px;
    margin: 0 auto;
}

.response-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.response-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.response-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.response-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.response-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-overlay p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5% 4rem;
    background: var(--light-bg);
    text-align: center;
}

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

.success-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.selected-service {
    margin-top: 2rem;
}

.service-confirmation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 5%;
    background: white;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.step-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-resources {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.resources-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resources-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.resources-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.resources-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.thanks-testimonial {
    padding: 4rem 5%;
    background: white;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

.testimonial-quote {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 1rem 0 2rem 2rem;
    color: var(--text-dark);
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        height: calc(100vh - 70px);
        width: 250px;
        transition: right 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-offset,
    .intro-asymmetric,
    .problem-section,
    .trust-content-split,
    .story-content-asymmetric,
    .comparison-layout,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-content-left h1,
    .header-content h1 {
        font-size: 2.5rem;
    }

    .section-title-offset,
    .testimonials-asymmetric h2,
    .team-approach h2 {
        font-size: 2.2rem;
        margin-left: 0;
    }

    .stat-card.offset {
        margin-left: 0;
    }

    .service-block.secondary {
        transform: none;
    }

    .mission-block.offset {
        transform: none;
    }

    .testimonial-card.offset-top {
        margin-top: 0;
    }

    .comparison-item.highlight {
        transform: none;
    }

    .form-container-asymmetric {
        padding: 2.5rem 1.5rem;
    }

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .break-overlay h3 {
        font-size: 1.8rem;
    }

    .break-overlay ul {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

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

    .intro-text-block h2,
    .problem-content h3,
    .trust-text h3 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .service-block.primary {
        transform: none;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}