:root {
    --primary: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0f3d2e;
    --accent: #e67e22;
    --accent-hover: #d35400;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-warm: #fdfaf6;
    --bg-section: #eef5f2;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0;
}

.header-top {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

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

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

.hero {
    margin-top: 110px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-section);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.section {
    padding: 100px 0;
}

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

.section-warm {
    background: var(--bg-warm);
}

.section-green {
    background: var(--bg-section);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 19px;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.problem-section {
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.problem-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    margin: 32px 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.problem-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.solution-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

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

.solution-card p {
    color: var(--text-light);
    font-size: 15px;
}

.benefits-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefits-row:last-child {
    margin-bottom: 0;
}

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

.benefits-text {
    flex: 1;
}

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

.benefits-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefits-visual {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefits-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.check-list {
    list-style: none;
    margin: 24px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--bg-section);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 220px;
    background-color: var(--bg-section);
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

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

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: var(--bg-warm);
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid var(--bg-light);
}

.form-benefits li:last-child {
    border-bottom: none;
}

.form-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.about-hero {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 44px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 24px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

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

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-text span {
    color: var(--text-light);
    font-size: 15px;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--white);
}

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 60px;
}

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

.thanks-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 16px;
}

.thanks-service {
    background: var(--bg-warm);
    padding: 20px 32px;
    border-radius: var(--radius);
    margin: 32px 0;
    font-weight: 600;
    color: var(--primary);
}

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

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

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

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--accent);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--accent-hover);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.disclaimer-box {
    background: var(--bg-light);
    border-left: 4px solid var(--text-light);
    padding: 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.references-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--white);
    font-size: 14px;
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
}

.page-header {
    padding: 140px 0 60px;
    background: var(--bg-section);
    text-align: center;
}

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

.page-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.service-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-row-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.service-row-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-row-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.inline-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content,
    .problem-section,
    .benefits-row,
    .benefits-row.reverse,
    .form-container,
    .about-hero,
    .contact-grid,
    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 34px;
    }

    .hero-image img,
    .problem-image img,
    .benefits-visual img,
    .about-image img,
    .service-row-image img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        margin-top: 100px;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .form-wrapper {
        padding: 32px 24px;
    }

    .service-card,
    .testimonial-card,
    .solution-card {
        min-width: 100%;
    }
}
