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

:root {
    --primary: #8B4513;
    --primary-dark: #654321;
    --secondary: #D4A574;
    --accent: #C9302C;
    --light: #FDF5E6;
    --dark: #2C1810;
    --gray: #6B5B4F;
    --white: #FFFFFF;
    --shadow: rgba(44, 24, 16, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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%;
}

.hero-funnel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    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="45" fill="none" stroke="%23D4A574" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero-text {
    flex: 1;
}

.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;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

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

.hero-desc {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px var(--shadow);
    overflow: hidden;
}

.hero-image svg {
    width: 200px;
    height: 200px;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    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);
    box-shadow: 0 10px 30px rgba(201, 48, 44, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 48, 44, 0.4);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

section {
    padding: 100px 0;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

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

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

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

.problem-section {
    padding: 120px 0;
}

.problem-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.problem-content {
    flex: 1;
}

.problem-visual {
    flex: 1;
}

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

.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateX(10px);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 48, 44, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

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

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

.story-section {
    background: var(--dark);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="%238B4513" stroke-width="0.3" opacity="0.2"/></svg>') repeat;
}

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

.story-quote {
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.story-quote::before {
    content: '"';
    display: block;
    font-size: 5rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: -30px;
}

.story-author {
    text-align: center;
    font-size: 1rem;
    color: var(--secondary);
}

.benefits-flow {
    padding: 120px 0;
}

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

.benefit-row:nth-child(even) {
    flex-direction: row-reverse;
}

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

.benefit-content {
    flex: 1;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.benefit-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.benefit-visual {
    flex: 1;
}

.benefit-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px var(--shadow);
}

.benefit-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

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

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

.trust-item {
    flex: 1;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
}

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

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

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow);
}

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

.service-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-body {
    padding: 30px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

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

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

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238B4513" stroke-width="2"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-banner {
    background: var(--accent);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.urgency-banner span {
    background: var(--white);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 0.9rem;
}

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

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

.form-info {
    flex: 1;
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E0D8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.feature-text h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px var(--shadow);
    padding: 15px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.sticky-cta-text {
    font-weight: 600;
    color: var(--dark);
}

.sticky-cta-text span {
    color: var(--accent);
}

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

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

.footer-brand {
    flex: 2;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

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

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.content-block {
    margin-bottom: 40px;
}

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

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

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

.content-block ul {
    color: var(--gray);
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.about-text {
    flex: 1;
}

.about-visual {
    flex: 1;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px var(--shadow);
}

.about-image svg {
    width: 150px;
    height: 150px;
    opacity: 0.9;
}

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

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

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

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

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow);
}

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(139, 69, 19, 0); }
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--white);
    stroke-width: 3;
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.thanks-service {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

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

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

.inline-cta {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(212, 165, 116, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    border: 2px dashed var(--secondary);
}

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

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

.process-section {
    padding: 120px 0;
}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-dot {
    position: absolute;
    left: -42px;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

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

.process-content p {
    color: var(--gray);
    line-height: 1.7;
}

.gallery-section {
    padding: 100px 0;
    background: var(--dark);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item svg {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .problem-grid,
    .benefit-row,
    .benefit-row:nth-child(even),
    .about-content,
    .form-container,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .trust-grid {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 50%;
        margin-bottom: 30px;
    }
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px var(--shadow);
        padding: 20px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-funnel {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

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

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

    .sticky-cta-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .form-wrapper {
        padding: 30px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

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

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