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

:root {
    --primary-color: #2d3561;
    --secondary-color: #5b6da8;
    --accent-color: #e84855;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-dark: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 900px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(232, 72, 85, 0.4);
    display: inline-block;
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #d13841;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232, 72, 85, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image:
        linear-gradient(135deg, rgba(45, 53, 97, 0.95) 0%, rgba(91, 109, 168, 0.9) 100%),
        url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(232, 72, 85, 0.4);
}

.hero-cta:hover {
    background: #d13841;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 72, 85, 0.5);
}

.section-story {
    padding: 100px 20px;
    background: white;
}

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

.story-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.story-intro p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.story-content {
    margin: 60px 0;
}

.story-block {
    margin-bottom: 30px;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-reveal {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid var(--accent-color);
}

.story-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s;
}

.inline-cta:hover {
    color: #d13841;
    transform: translateX(5px);
}

.section-problem {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.problem-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.problem-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    color: #555;
    line-height: 1.7;
}

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

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

.insight-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.insight-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-bold {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
}

.insight-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.insight-stat {
    flex: 1 1 250px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-transformation {
    padding: 100px 20px;
    background: white;
}

.transformation-content {
    max-width: 900px;
    margin: 0 auto;
}

.transformation-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.transformation-intro {
    font-size: 1.3rem;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.7;
}

.transformation-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.transformation-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(232, 72, 85, 0.3);
}

.transformation-cta:hover {
    background: #d13841;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232, 72, 85, 0.4);
}

.section-testimonials {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.testimonials-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
}

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

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

.benefits-container h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-major {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
}

.benefit-major h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-major p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.benefits-secondary {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

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

.benefits-list li {
    font-size: 1.1rem;
    padding-left: 35px;
    position: relative;
    color: #444;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.section-pricing {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-wrapper h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-desc {
    color: #666;
    margin-bottom: 25px;
}

.pricing-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    color: #888;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
}

.pricing-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 53, 97, 0.3);
}

.section-urgency {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-color) 100%);
    color: white;
}

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

.urgency-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
}

.urgency-calc {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.urgency-calc p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.calc-row {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 30px;
}

.section-guarantee {
    padding: 80px 20px;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.guarantee-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-wrapper h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.guarantee-wrapper p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guarantee-sub {
    font-weight: 700;
    font-size: 1.1rem;
}

.section-faq {
    padding: 100px 20px;
    background: white;
}

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

.faq-container h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #f0f2f5;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.section-reservation {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

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

.reservation-container h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reservation-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.7;
}

.reservation-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    flex: 1 1 100%;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

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

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.form-submit:hover {
    background: #d13841;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 72, 85, 0.4);
}

.section-final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.final-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 40px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(232, 72, 85, 0.4);
}

.final-cta-btn:hover {
    background: #d13841;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 72, 85, 0.5);
}

.footer {
    background: #1a1a2e;
    color: white;
    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 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

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

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

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

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

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

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

.about-story,
.about-values,
.about-team,
.about-cta {
    padding: 80px 20px;
}

.about-story {
    background: white;
}

.about-intro,
.about-mission {
    margin-bottom: 50px;
}

.about-intro h2,
.about-mission h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-intro p,
.about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-values {
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.value-card p {
    color: #555;
    line-height: 1.7;
}

.about-team {
    background: white;
}

.about-team h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

.about-cta {
    background: #f8f9fa;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

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

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

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

.services-detailed,
.services-comparison,
.services-process,
.services-cta {
    padding: 80px 20px;
}

.services-detailed {
    background: white;
}

.service-block {
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-block.featured {
    border: 3px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 50px;
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-desc {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.service-features-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

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

.service-features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.service-features-list li strong {
    color: var(--primary-color);
}

.services-comparison {
    background: #f8f9fa;
}

.services-comparison h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

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

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

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

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.services-process {
    background: white;
}

.services-process h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

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

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

.services-cta {
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 20px;
    background: white;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    flex: 1 1 600px;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-info-section {
    flex: 1 1 350px;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-block {
    margin-bottom: 35px;
}

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

.contact-info-block p {
    color: #555;
    line-height: 1.7;
}

.contact-info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

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

.contact-faq h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 15px;
}

.faq-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-block p {
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

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

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.thanks-info {
    background: white;
    color: var(--text-dark);
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
}

.thanks-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
}

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

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-resources {
    padding: 80px 20px;
    background: white;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.resource-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 150px 20px 80px;
    background: white;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-intro {
    color: #888;
    font-size: 1rem;
    margin-bottom: 50px;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 15px 20px;
        gap: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        background: white;
        width: 90%;
        max-width: 400px;
        padding: 30px;
        border-radius: 20px;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

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

    .sticky-cta-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .problem-card,
    .benefit-major,
    .pricing-card,
    .testimonial-card {
        flex: 1 1 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

    .form-row .form-group {
        flex: 1 1 100%;
    }

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

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

    .process-step {
        flex: 1 1 100%;
    }

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .reservation-form,
    .contact-form {
        padding: 30px 25px;
    }

    .thanks-info {
        padding: 30px 25px;
    }

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

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

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.1rem;
    }

    .hero-fullscreen {
        padding: 100px 15px 40px;
    }

    .section-story,
    .section-problem,
    .section-insight,
    .section-transformation,
    .section-testimonials,
    .section-benefits,
    .section-pricing,
    .section-urgency,
    .section-guarantee,
    .section-faq,
    .section-reservation,
    .section-final-cta {
        padding: 60px 15px;
    }

    .story-reveal,
    .urgency-calc {
        padding: 30px 20px;
    }

    .service-block {
        padding: 30px 20px;
    }

    .benefits-secondary {
        padding: 30px 20px;
    }
}
