:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent: #d4a373;
    --accent-light: #e9c46a;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

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

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

.nav-desktop a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5e9 50%, #fff8e7 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%232d6a4f" opacity="0.03"/></svg>') repeat;
    background-size: 60px;
    transform: rotate(15deg);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    margin-top: 40px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-image-badge .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-image-badge .text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.3;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

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

.btn-accent:hover {
    background: #c4956a;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

section {
    padding: 80px 0;
}

.section-intro {
    background: var(--white);
    position: relative;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark);
}

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

.intro-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

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

.section-problem {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
}

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

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-story {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 200px;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 25px;
    text-align: center;
}

.story-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.story-author {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.story-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.story-author-name {
    font-weight: 600;
}

.story-author-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

.section-benefits {
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

.section-services {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    padding: 100px 0;
}

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

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

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    opacity: 0.9;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.section-testimonials {
    background: var(--white);
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--light);
    padding: 35px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-rating {
    margin-left: auto;
    color: var(--accent);
    font-size: 1.1rem;
}

.section-trust {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.trust-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.section-cta {
    background: var(--light);
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-box p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.section-form {
    background: var(--white);
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark);
}

.form-info p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.form-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-form {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    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-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236c757d"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.form-consent input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
}

.form-consent a {
    color: var(--primary);
    text-decoration: underline;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.sticky-cta-text {
    display: none;
}

.sticky-cta-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.sticky-cta-text p {
    font-size: 0.85rem;
    color: var(--gray);
}

.sticky-cta .btn {
    flex: 1;
}

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

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

.cookie-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

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

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

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

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

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

.page-content ul,
.page-content ol {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--gray);
}

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

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 120px;
    height: 120px;
    fill: var(--white);
    opacity: 0.8;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 20px;
}

.thanks-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-card h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.thanks-card p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.thanks-service h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.thanks-service p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.urgency-banner {
    background: linear-gradient(90deg, var(--accent), #e9c46a);
    color: var(--dark);
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
}

.urgency-banner span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inline-cta {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
    border-left: 4px solid var(--primary);
}

.inline-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.inline-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
    }

    .intro-content {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        flex: 1;
    }

    .intro-image {
        flex: 1;
    }

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

    .problem-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .benefit-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

    .service-card {
        flex: 1;
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

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

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .form-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .form-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
        max-width: 500px;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .sticky-cta-text {
        display: block;
    }

    .sticky-cta .btn {
        flex: none;
        width: auto;
    }

    .cookie-banner {
        left: auto;
        right: 20px;
        max-width: 450px;
    }

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

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

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

    .team-card {
        flex: 1;
    }

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

    .contact-info-card {
        flex: 1;
        min-width: calc(50% - 20px);
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }

    .service-card {
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }

    .problem-card {
        min-width: calc(50% - 15px);
    }

    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }
}
