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

:root {
    --primary-color: #c84b31;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d4059;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #b03d23;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    border-radius: 12px;
}

.hero-visual h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(200,75,49,0.4);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200,75,49,0.5);
}

.story-intro {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.story-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-narrow p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: var(--text-light);
    line-height: 1.9;
}

.story-img {
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.insight-block {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    color: var(--text-white);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.insight-left {
    flex: 0 0 350px;
}

.insight-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.insight-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.insight-right {
    flex: 1;
}

.insight-right p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
}

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

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

.reveal-section {
    padding: 6rem 2rem;
    background: white;
}

.reveal-content {
    max-width: 1300px;
    margin: 0 auto;
}

.reveal-content h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.reveal-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.reveal-item {
    flex: 1 1 300px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.reveal-item:hover {
    transform: translateY(-8px);
}

.reveal-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reveal-item h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.reveal-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.social-proof {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
}

.social-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.social-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-scroll {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-mini {
    flex: 1 1 280px;
    max-width: 350px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-mini p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-mini span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-mid {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2d4059 0%, #1a2533 100%);
}

.cta-mid-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-mid-content h3 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-cta-mid {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-mid:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.products-reveal {
    padding: 6rem 2rem;
    background: white;
}

.products-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.products-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.products-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.products-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.products-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.product-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

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

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-ideal {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0,0,0,0.08);
}

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

.btn-select {
    padding: 0.8rem 1.8rem;
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e3 100%);
}

.urgency-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.urgency-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-color);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.urgency-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

.urgency-note strong {
    color: var(--primary-color);
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(200,75,49,0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,75,49,0.3);
}

.form-privacy {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.guarantee-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    color: var(--text-white);
}

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

.guarantee-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.guarantee-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.guarantee-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.final-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-final-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.3rem 3.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(200,75,49,0.3);
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200,75,49,0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 1.2rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.sticky-text {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2533 100%);
    color: var(--text-white);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.4rem;
    opacity: 0.9;
}

.about-hero-img {
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.about-story {
    padding: 5rem 2rem;
    background: white;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image-block {
    margin: 4rem 0;
    text-align: center;
}

.story-image-block img {
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.about-values {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.values-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.about-team {
    padding: 5rem 2rem;
    background: white;
}

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

.team-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.team-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    flex: 1 1 200px;
    max-width: 250px;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-workshop {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.workshop-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.workshop-text {
    flex: 1;
}

.workshop-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.workshop-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.workshop-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workshop-images img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-cta {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.services-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-intro {
    padding: 4rem 2rem;
    background: white;
}

.services-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-catalog {
    padding: 3rem 2rem 6rem;
    background: var(--bg-light);
}

.catalog-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.badge-bestseller {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--success-color);
    color: var(--text-white);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

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

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

.service-content-section {
    padding: 3rem;
}

.service-content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.specs-list {
    list-style: none;
    margin-bottom: 2rem;
}

.specs-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.specs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-ideal {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.btn-select-service {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,75,49,0.3);
}

.accessories-section {
    padding: 5rem 2rem;
    background: white;
}

.accessories-container {
    max-width: 1300px;
    margin: 0 auto;
}

.accessories-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.accessories-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.accessories-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.accessory-card {
    flex: 1 1 calc(33.333% - 1.7rem);
    min-width: 280px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.accessory-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.accessory-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.accessory-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.accessory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 2px solid rgba(0,0,0,0.05);
}

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

.btn-select-small {
    padding: 0.7rem 1.5rem;
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-comparison {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.comparison-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: var(--bg-dark);
    color: var(--text-white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table td {
    font-size: 1rem;
    color: var(--text-dark);
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2533 100%);
    color: var(--text-white);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-main {
    padding: 5rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info-section h2,
.contact-map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.map-placeholder {
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.directions-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.directions-info p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-faq {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-cta {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.legal-page {
    padding: 5rem 2rem;
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--bg-dark);
    color: var(--text-white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 700;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.thanks-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: var(--text-white);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(39,174,96,0.3);
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-contact {
    margin: 2rem 0;
}

.thanks-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-light);
}

@media (max-width: 1024px) {
    .insight-container {
        flex-direction: column;
    }

    .insight-left {
        flex: 1;
    }

    .workshop-container {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-visual h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .story-narrow h2,
    .reveal-content h2,
    .products-header h2 {
        font-size: 2rem;
    }

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

    .guarantee-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

    .contact-container {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-visual h1 {
        font-size: 2rem;
    }

    .brand {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}
