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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

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

.nav-ad-label {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 auto;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.hero-card {
    background: var(--bg-light);
    padding: 80px 0;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image-card {
    flex: 1;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
    cursor: pointer;
}

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

.intro-card {
    padding: 80px 0;
}

.card-dark {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

.card-dark h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.card-dark a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.card-dark a:hover {
    text-decoration: underline;
}

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

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.incident-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.incident-card:hover {
    transform: translateY(-4px);
}

.incident-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.incident-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: var(--text-dark);
}

.incident-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

.insight-section {
    padding: 80px 0;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.insight-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.insight-content a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: var(--accent-color);
    color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #ffffff;
}

.highlight-box a {
    color: #ffffff;
    text-decoration: underline;
}

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-flow {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.services-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 56px;
}

.service-cards-wrapper {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-select-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
}

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

.form-section {
    padding: 80px 0;
}

.form-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background: var(--primary-color);
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.references-section {
    padding: 60px 0;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

.thanks-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.thanks-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.thanks-card h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.thanks-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.service-confirmation p {
    margin: 0;
    font-weight: 600;
}

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

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

.page-hero {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-lead {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

.about-content,
.contact-content {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 48px;
}

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 32px;
    margin: 48px 0 20px;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-sidebar {
    flex: 1;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 28px;
}

.sidebar-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.stats-grid {
    display: flex;
    gap: 24px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 180px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    line-height: 1.7;
}

.values-list li:last-child {
    border-bottom: none;
}

.cta-banner {
    background: var(--primary-color);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.service-full-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-full-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-full-item.reverse {
    flex-direction: row-reverse;
}

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

.service-full-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-full-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-left: 12px;
}

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

.service-full-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
}

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

.comparison-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.comparison-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.comparison-card strong {
    color: var(--primary-color);
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 28px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.contact-cta-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-cta-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

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

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 48px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

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

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

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-content-wrapper,
    .split-layout,
    .about-layout,
    .contact-layout,
    .service-full-item {
        flex-direction: column;
    }

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

    .hero-text-card h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .section-heading {
        font-size: 32px;
    }

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

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

@media (max-width: 640px) {
    .hero-text-card h1 {
        font-size: 28px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

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