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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #e53935;
}

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

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

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

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    display: none;
    flex-direction: column;
    padding: 20px;
}

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

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

.nav-menu a {
    color: var(--text-color);
    font-size: 18px;
    padding: 10px 0;
    display: block;
}

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-visual {
    margin-top: 81px;
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.hero-overlay-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #6f5a43;
    opacity: 1;
}

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

.intro-hook {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.split-text {
    padding: 40px 0;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--light-text);
}

.split-image {
    width: 100%;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-box p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.visual-showcase {
    padding: 80px 0;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.showcase-item.large {
    height: 500px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.showcase-overlay span {
    font-size: 24px;
    font-weight: 600;
}

.trust-building {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-building h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.testimonials-inline blockquote {
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.testimonials-inline blockquote p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonials-inline cite {
    font-style: normal;
    font-size: 16px;
    color: var(--light-text);
    font-weight: 600;
}

.cta-sticky-trigger {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.cta-sticky-trigger h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-sticky-trigger p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #6f5a43;
    opacity: 1;
}

.services-reveal {
    padding: 100px 20px;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--light-text);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    padding: 8px 15px;
    background: var(--bg-light);
    font-size: 14px;
    border-radius: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 80px 20px;
    background: #fff3e0;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--accent-color);
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 20px;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 30px;
    border: 1px solid var(--border-color);
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.btn-submit {
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.form-note {
    font-size: 13px;
    color: var(--light-text);
    text-align: center;
}

.form-note a {
    text-decoration: underline;
}

.final-cta {
    padding: 100px 20px;
    background: var(--white);
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    opacity: 1;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: bottom 0.4s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.sticky-content span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 14px 35px;
    background: var(--white);
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #6f5a43;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-hero {
    margin-top: 81px;
    padding: 120px 20px 80px;
    background: var(--bg-light);
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    color: var(--light-text);
}

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

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

.mission-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,255,255,0.05);
}

.mission-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-box p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
}

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

.timeline-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
    border-left: 2px solid var(--accent-color);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
}

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

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

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

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    gap: 40px;
}

.service-detail-image {
    width: 100%;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-tagline {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.service-includes {
    margin-bottom: 40px;
}

.service-includes h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-includes ul li {
    padding: 10px 0 10px 30px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    color: var(--light-text);
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-display {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.guarantee-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.guarantee-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-card {
    padding: 35px;
    background: var(--white);
    text-align: center;
}

.guarantee-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
}

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--light-text);
}

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

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-item .note {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.contact-note h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.contact-map {
    width: 100%;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
}

.map-overlay p {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-map {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

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

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: var(--white);
    border-left: 3px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-contact {
    padding: 100px 20px;
}

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.thanks-hero {
    margin-top: 81px;
    padding: 120px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--light-text);
}

.thanks-details {
    padding: 80px 20px;
}

.thanks-box {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-box h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
}

.step-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.order-summary {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--accent-color);
    text-align: center;
}

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

.thanks-cta h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.thanks-cta p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-outline {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    opacity: 1;
}

.thanks-info {
    padding: 60px 20px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.info-list li {
    padding: 15px 0 15px 35px;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-size: 24px;
}

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

.legal-content {
    margin-top: 81px;
}

.legal-content .narrow-content {
    padding: 80px 20px;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--light-text);
}

.legal-content strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        border: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .hero-overlay-content h1 {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .intro-hook {
        font-size: 28px;
    }

    .split-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }

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

    .split-text {
        padding: 0;
    }

    .split-image img {
        height: 500px;
    }

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

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

    .showcase-item.large {
        flex: 100%;
    }

    .trust-cards {
        flex-direction: row;
    }

    .trust-card {
        flex: 1;
    }

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

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

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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

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

    .service-detail-card {
        flex-direction: row;
        gap: 60px;
    }

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

    .service-detail-image,
    .service-detail-content {
        flex: 1;
    }

    .service-detail-image img {
        height: 100%;
        min-height: 500px;
    }

    .service-price-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .btn-select {
        width: auto;
    }

    .guarantee-cards {
        flex-direction: row;
    }

    .guarantee-card {
        flex: 1;
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

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

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

    .step-item {
        flex: 1;
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-overlay-content h1 {
        font-size: 64px;
    }

    .split-text h2 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 48px;
    }
}