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

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #3b82f6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

.hero-compact {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content-wrapper {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-compact h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.stats-bar {
    background: var(--bg-light);
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.intro-story {
    padding: 80px 20px;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

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

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card.highlight-card {
    border: 2px solid var(--primary-color);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.speed-indicator {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.speed-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.speed-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    flex: 1;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.btn-card-cta:hover {
    background: var(--primary-dark);
}

.methodology-insight {
    padding: 80px 20px;
}

.methodology-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.methodology-list {
    list-style: none;
    margin-bottom: 25px;
}

.methodology-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.methodology-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.methodology-note {
    background: var(--bg-light);
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.methodology-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--bg-white);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.comparison-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.comparison-item {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.comparison-item p {
    color: var(--text-gray);
}

.cta-section-alt {
    padding: 80px 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-submit:hover {
    background: var(--primary-dark);
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: white;
}

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

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

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

.footer-col ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 15px 20px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.sticky-cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
}

.page-hero-simple {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.methodology-detailed {
    padding: 80px 20px;
}

.methodology-detailed h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.method-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 80px;
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.method-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.mission-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
}

.mission-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 20px;
}

.services-full {
    padding: 80px 20px;
}

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

.service-card-detailed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-header {
    padding: 30px;
    background: var(--bg-light);
    position: relative;
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-badge.value {
    background: #f59e0b;
    color: white;
}

.service-badge.community {
    background: #8b5cf6;
    color: white;
}

.service-badge.flex {
    background: #06b6d4;
    color: white;
}

.service-badge.quiet {
    background: #64748b;
    color: white;
}

.service-badge.team {
    background: #ec4899;
    color: white;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-details {
    padding: 40px;
}

.speed-metric {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-info {
    margin-bottom: 25px;
}

.service-info p {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.service-details h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-gray);
}

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

.pricing-table {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-option {
    flex: 1;
    min-width: 220px;
    padding: 25px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
}

.price-option.highlight-price {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.05);
}

.price-option h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.price-option p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

.btn-service-cta:hover {
    background: var(--primary-dark);
}

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

.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--text-dark);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

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

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.reason-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-gray);
}

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

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

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

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.thanks-content {
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.selected-service h3 {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
}

.steps-list li {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.thanks-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    margin-top: 40px;
}

.thanks-note p {
    color: var(--text-gray);
    line-height: 1.8;
}

.thanks-testimonial {
    padding: 60px 20px;
    background: var(--bg-light);
}

.testimonial-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-box p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-gray);
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }

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

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

    .hamburger {
        display: flex;
    }

    .hero-compact h1 {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .feature-card {
        flex: 1 1 100%;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }

    .comparison-item {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .method-step {
        flex-direction: column;
    }

    .step-number {
        font-size: 2rem;
    }

    .pricing-table {
        flex-direction: column;
    }

    .price-option {
        flex: 1 1 100%;
    }

    .reason-card {
        flex: 1 1 100%;
    }

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

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

    .page-hero-simple h1 {
        font-size: 2rem;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }
}