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

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --accent-color: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

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

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #16a34a;
}

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

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

.nav-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-article {
    min-height: 100vh;
}

.article-hero {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-text-centered {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-section {
    padding: 60px 20px;
}

.article-section.bg-light {
    background-color: var(--bg-light);
}

.article-section.bg-dark {
    background-color: var(--bg-dark);
}

.article-section.bg-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.text-block-narrow {
    max-width: 650px;
    margin: 0 auto;
}

.text-block-narrow.center {
    text-align: center;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.text-block-narrow p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.text-block-narrow strong {
    font-weight: 600;
    color: var(--text-dark);
}

.text-block-narrow em {
    font-style: italic;
    color: var(--text-light);
}

.section-heading {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.section-heading-white {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.feature-list-white {
    list-style: none;
    padding-left: 0;
}

.feature-list-white li {
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
    color: var(--white);
    font-size: 17px;
}

.feature-list-white li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
    font-size: 17px;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 24px;
}

.image-inline {
    max-width: 650px;
    margin: 40px auto;
}

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

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

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

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.cta-inline:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

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

.cta-inline-alt:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-inline {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial-inline.alt {
    background-color: #fff5e6;
    border-left-color: #f59e0b;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.stats-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.danger-list {
    max-width: 700px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.danger-item {
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.steps-flow {
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-reveal {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pricing-intro {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.pricing-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.15);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.price-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.price-cta {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-note {
    max-width: 650px;
    margin: 40px auto 0;
    text-align: center;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.roi-calc {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.roi-item {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.roi-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
}

.urgency-block {
    padding: 50px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

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

.urgency-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.form-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-dark);
}

.form-subtext {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 18px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 32px;
}

.cta-final {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.cta-final:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #16a34a;
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
}

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.difference-grid {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.diff-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.team-list {
    max-width: 700px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-block {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

.service-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-content ul li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.service-cta {
    margin-top: 24px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-layout {
    padding: 60px 20px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 36px;
}

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

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-info {
    margin-bottom: 32px;
}

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

.thanks-next {
    margin-bottom: 40px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-next h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.thanks-next ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.thanks-actions .btn-primary {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-actions .btn-primary:hover {
    background-color: var(--primary-dark);
}

.thanks-actions .btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-actions .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-content {
    padding: 60px 20px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .section-heading,
    .section-heading-white {
        font-size: 28px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .stats-inline {
        flex-direction: column;
        align-items: center;
    }

    .roi-calc {
        flex-direction: column;
    }

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

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

    .sticky-cta-btn {
        padding: 14px 22px;
        font-size: 14px;
    }

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

    .service-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
    }

    .lead-text {
        font-size: 18px;
    }

    .section-heading,
    .section-heading-white {
        font-size: 24px;
    }

    .cta-inline,
    .cta-inline-alt {
        padding: 14px 28px;
        font-size: 16px;
    }

    .testimonial-inline {
        padding: 24px;
    }

    .testimonial-inline p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .price-amount {
        font-size: 34px;
    }

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

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

    .cookie-buttons button {
        width: 100%;
    }
}
