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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.floating-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--light-color);
    border-radius: 5px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 999;
    display: none;
    align-items: center;
    gap: 15px;
    animation: pulse 2s infinite;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta span {
    font-weight: 600;
}

.btn-sticky {
    background: #ffffff;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-section {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(37, 99, 235, 0.8), rgba(124, 58, 237, 0.8)), url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    width: 100%;
    padding: 40px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.story-section {
    padding: 80px 0;
    background: var(--light-color);
}

.story-block {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-block h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-wrapper {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0;
}

.problem-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: #ffffff;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.problem-item p {
    font-size: 16px;
    opacity: 0.9;
}

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

.section-title-center {
    font-size: 38px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 800;
}

.insight-text {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.insight-cta {
    text-align: center;
    margin-top: 45px;
}

.btn-insight {
    display: inline-block;
    background: #ffffff;
    color: var(--secondary-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-insight:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.trust-section {
    padding: 80px 0;
    background: var(--light-color);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 800;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #64748b;
}

.benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffffff;
    padding: 35px;
}

.benefit-overlay h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.benefit-overlay p {
    font-size: 16px;
    opacity: 0.95;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-small {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.benefit-small h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-small p {
    font-size: 16px;
    color: var(--text-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.check-icon {
    color: var(--success-color);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 16px;
    margin: 0;
}

.reveal-section {
    padding: 80px 0;
    background: var(--light-color);
}

.reveal-text {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.reveal-image {
    margin: 45px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, var(--light-color));
}

.services-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

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

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

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-badge.premium {
    background: var(--primary-color);
}

.service-badge.exclusive {
    background: var(--secondary-color);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.service-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-price .price-period {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-service {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.urgency-section {
    padding: 80px 0;
    background: var(--danger-color);
    color: #ffffff;
}

.urgency-box {
    text-align: center;
    padding: 50px 30px;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 35px;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    min-width: 90px;
}

.timer-item span {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.timer-item label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
}

.btn-urgency {
    display: inline-block;
    background: #ffffff;
    color: var(--danger-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-header p {
    font-size: 16px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    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);
}

.form-consent {
    margin-bottom: 30px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.final-cta-section {
    padding: 100px 0;
    background: var(--dark-color);
    color: #ffffff;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.final-cta-section p {
    font-size: 19px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    margin-top: 60px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
    background: var(--light-color);
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-values {
    margin-bottom: 80px;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

.about-numbers {
    margin-bottom: 80px;
    padding: 60px 0;
    background: var(--dark-color);
    color: #ffffff;
    border-radius: 20px;
}

.about-numbers h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.number-item {
    text-align: center;
    padding: 25px;
}

.number-item .number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.number-item p {
    font-size: 16px;
    opacity: 0.9;
}

.about-team {
    margin-bottom: 60px;
}

.about-team h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-member p {
    font-size: 16px;
    color: #64748b;
}

.about-cta {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: #ffffff;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 80px 0;
    background: var(--light-color);
}

.services-intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-intro-text p {
    font-size: 18px;
    color: var(--text-color);
}

.services-comparison {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-detailed.featured-service {
    border: 3px solid var(--primary-color);
}

.service-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-header h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.service-price-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.service-price-big .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-price-big .currency {
    font-size: 18px;
    color: #64748b;
}

.service-description {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-includes ul {
    margin-bottom: 35px;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-includes .icon {
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

.btn-service-page {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-page:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.services-faq {
    margin-top: 80px;
}

.services-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.services-cta-final {
    margin-top: 80px;
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: #ffffff;
}

.services-cta-final h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services-cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.contact-help {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.contact-help h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-help p {
    font-size: 15px;
    line-height: 1.7;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

.contact-extra {
    margin-bottom: 60px;
}

.contact-extra h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--dark-color);
}

.contact-faq {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-contact-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-cta {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-section {
    margin-top: 60px;
    padding: 100px 0;
    background: var(--light-color);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step p {
    font-size: 16px;
    color: var(--text-color);
}

.thanks-info {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-info ul {
    list-style: disc;
    padding-left: 25px;
}

.thanks-info li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.thanks-social {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.thanks-social h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.thanks-social p {
    font-size: 16px;
    color: var(--text-color);
}

.legal-page {
    margin-top: 60px;
    padding: 80px 0;
    background: var(--light-color);
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: disc;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.cookies-table thead {
    background: var(--light-color);
}

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

.cookies-table th {
    font-weight: 700;
    color: var(--dark-color);
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
        width: auto;
        left: 0;
    }

    .nav-menu li {
        margin: 0 10px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        flex: 1 1 calc(50% - 25px);
    }

    .testimonials-flow {
        flex-direction: row;
    }

    .benefits-asymmetric {
        flex-direction: row;
    }

    .benefit-large {
        flex: 2;
    }

    .benefit-stack {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }

    .urgency-timer {
        gap: 40px;
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

    .about-text,
    .about-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 25px);
    }

    .numbers-grid {
        flex-direction: row;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 30px);
    }

    .services-comparison {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-detailed {
        flex: 1 1 calc(50% - 40px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .next-steps {
        flex-direction: row;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .problem-grid {
        flex-wrap: nowrap;
    }

    .problem-item {
        flex: 1;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    .services-comparison {
        flex-wrap: nowrap;
    }

    .service-detailed {
        flex: 1;
    }
}
