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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a:hover {
    color: #fd79a8;
}

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

ul {
    list-style-position: inside;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 52, 54, 0.98);
    color: #ffffff;
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

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

.cookie-content a {
    color: #74b9ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #55efc4;
    color: #2d3436;
}

.btn-accept:hover {
    background-color: #00b894;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2d3436;
}

.nav-brand a {
    color: #2d3436;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3436;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-menu li a {
    color: #2d3436;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fd79a8;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fd79a8;
}

.hero-story {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.hero-story h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 22px;
    color: #636e72;
    font-weight: 400;
    margin-top: 15px;
}

.intro-narrow {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.intro-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2d3436;
}

.intro-narrow p {
    font-size: 19px;
    margin-bottom: 18px;
    color: #636e72;
}

.problem-amplify {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

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

.highlight-text {
    font-size: 21px;
    font-weight: 600;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid #ffeaa7;
    border-radius: 4px;
}

.split-visual {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: 800;
    text-align: center;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.story-section strong {
    font-weight: 700;
    color: #2d3436;
}

.insight-block {
    padding: 100px 20px;
    background: #ffeaa7;
}

.insight-card {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-card h3 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 800;
    color: #2d3436;
    text-align: center;
}

.insight-card > p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.insight-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.insight-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.cta-inline {
    padding: 60px 20px;
    background-color: #2d3436;
    color: #ffffff;
    text-align: center;
}

.cta-inline p {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fd79a8;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.4);
}

.btn-primary:hover {
    background-color: #e84393;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 121, 168, 0.5);
}

.trust-build {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-build h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.trust-build > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #636e72;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #74b9ff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #636e72;
    font-weight: 600;
}

.collection-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.collection-reveal h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.section-lead {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.collection-item h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: #2d3436;
    font-weight: 700;
}

.collection-item p {
    padding: 0 25px 25px;
    color: #636e72;
    font-size: 16px;
    line-height: 1.6;
}

.cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background-color: #fd79a8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.5);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #e84393;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.6);
}

.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.benefit-item.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #55efc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #2d3436;
}

.benefit-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d3436;
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
}

.pricing-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.pricing-reveal h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.pricing-reveal > .container-narrow > p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 20px;
    color: #636e72;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #fd79a8;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f9 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fd79a8;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.pricing-desc {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 25px;
    min-height: 70px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #2d3436;
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: #636e72;
    margin-top: 10px;
}

.urgency-section {
    padding: 80px 20px;
    background: #2d3436;
    color: #ffffff;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fd79a8;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffeaa7;
}

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

.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #636e72;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #2d3436;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #74b9ff;
    box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #fd79a8;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.4);
}

.btn-submit:hover {
    background-color: #e84393;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 121, 168, 0.5);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 800;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.final-cta strong {
    font-weight: 800;
    font-size: 22px;
}

.final-cta .btn-primary {
    margin-top: 30px;
    background-color: #ffffff;
    color: #6c5ce7;
}

.final-cta .btn-primary:hover {
    background-color: #ffeaa7;
    color: #2d3436;
}

.site-footer {
    background: #2d3436;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    font-size: 15px;
    color: #b2bec3;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b2bec3;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.page-hero {
    margin-top: 90px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #74b9ff 0%, #a29bfe 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #636e72;
}

.about-highlight {
    background: #ffeaa7;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.about-highlight p {
    font-size: 19px;
    color: #2d3436;
    margin: 0;
}

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.value-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.team-section > .container-narrow > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #636e72;
}

.team-simple {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2d3436;
}

.team-member p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
}

.production-section,
.philosophy-section {
    padding: 80px 20px;
    background: #ffffff;
}

.production-section h2,
.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 800;
}

.production-section p,
.philosophy-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #636e72;
}

.philosophy-list {
    list-style: none;
    counter-reset: philosophy-counter;
    margin-top: 40px;
}

.philosophy-list li {
    counter-increment: philosophy-counter;
    margin-bottom: 35px;
    position: relative;
    padding-left: 60px;
}

.philosophy-list li::before {
    content: counter(philosophy-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: #fd79a8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.philosophy-list li strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.philosophy-list li p {
    font-size: 17px;
    margin: 0;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.cta-section .btn-primary {
    margin-top: 30px;
    background-color: #ffffff;
    color: #764ba2;
}

.cta-section .btn-primary:hover {
    background-color: #ffeaa7;
    color: #2d3436;
}

.services-intro {
    padding: 60px 20px;
    background: #f8f9fa;
}

.services-intro p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #636e72;
}

.services-full {
    padding: 40px 20px 100px;
    background: #ffffff;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.service-block.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #2d3436;
}

.service-tagline {
    font-size: 18px;
    color: #fd79a8;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-content > p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #636e72;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #636e72;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #74b9ff;
    font-size: 24px;
    line-height: 1;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #55efc4;
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 10px;
}

.price-detail {
    font-size: 15px;
    color: #636e72;
}

.service-visual {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 25px 0;
}

.service-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 17px;
    color: #636e72;
}

.service-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 35px;
    height: 35px;
    background: #74b9ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.services-guarantee {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-guarantee h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

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

.guarantee-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #55efc4;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d3436;
}

.guarantee-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
}

.contact-info {
    padding: 60px 20px;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.contact-card p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-detail {
    font-size: 17px;
    font-weight: 600;
    color: #2d3436;
    line-height: 1.8;
}

.contact-visit,
.contact-faq,
.contact-final {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-visit h2,
.contact-faq h2,
.contact-final h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-visit p,
.contact-faq p,
.contact-final p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #636e72;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2d3436;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.contact-map {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-map h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-map p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #636e72;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-email-large {
    text-align: center;
    margin-top: 40px;
}

.contact-email-large a {
    font-size: 28px;
    font-weight: 700;
    color: #fd79a8;
    text-decoration: underline;
}

.thanks-hero {
    margin-top: 90px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 25px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.thanks-content {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.thanks-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #55efc4;
    color: #2d3436;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d3436;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
}

.thanks-note {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 25px;
    background: #fff5e6;
    border-left: 4px solid #ffa502;
    border-radius: 8px;
}

.thanks-note p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #2d3436;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.thanks-service-summary {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-service-summary h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-selected {
    font-size: 24px;
    color: #fd79a8;
    font-weight: 700;
    margin-bottom: 10px;
}

.thanks-explore {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-explore h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
}

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

.explore-link {
    display: block;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
    transition: all 0.3s ease;
}

.explore-link:hover {
    background: #e8eef3;
    transform: translateX(5px);
}

.explore-link h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d3436;
}

.explore-link p {
    font-size: 16px;
    color: #636e72;
    margin: 0;
    line-height: 1.6;
}

.thanks-final {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-final h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-final p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #636e72;
}

.thanks-signature {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-top: 30px;
}

.legal-page {
    margin-top: 90px;
    padding: 80px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #2d3436;
}

.legal-date {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2d3436;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2d3436;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #636e72;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #636e72;
}

.legal-page a {
    color: #74b9ff;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #0984e3;
}

.legal-page strong {
    font-weight: 700;
    color: #2d3436;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2d3436;
}

.cookie-table td {
    font-size: 15px;
    color: #636e72;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        padding: 15px 30px;
        border-bottom: 1px solid #f8f9fa;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .intro-narrow h2 {
        font-size: 28px;
    }

    .intro-narrow p {
        font-size: 17px;
    }

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

    .split-visual {
        min-height: 300px;
    }

    .split-text h3 {
        font-size: 28px;
    }

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

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

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-visual {
        min-height: 300px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-sticky {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 14px 24px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-page h2 {
        font-size: 24px;
    }

    .thanks-hero h1 {
        font-size: 36px;
    }

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}