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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.intro-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-top: 50px;
}

.problem-amplify {
    padding: 100px 20px;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.split-visual {
    flex: 1;
}

.visual-box {
    border-radius: 20px;
}

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

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.insight-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.bold-text {
    font-weight: 700;
    font-size: 22px;
}

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

.testimonial-inline {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-inline blockquote {
    border-left: none;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #34495e;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #667eea;
}

.cta-midpoint {
    padding: 80px 20px;
    background: #667eea;
    text-align: center;
}

.cta-midpoint h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: scale(1.05);
}

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

.section-title-left {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features span {
    font-size: 14px;
    color: #27ae60;
}

.social-proof {
    padding: 100px 20px;
    background: #f8f9fa;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #7f8c8d;
}

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

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

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

.price-card {
    flex: 1;
    max-width: 380px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.price-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 18px;
    margin-right: 5px;
    margin-top: 10px;
}

.value {
    font-size: 64px;
    font-weight: 800;
}

.price-includes {
    list-style: none;
    margin-bottom: 30px;
}

.price-includes li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.price-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-card.featured .price-includes li:before {
    color: #ffffff;
}

.btn-select-service,
.btn-package {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover,
.btn-package:hover {
    background: #5568d3;
}

.price-card.featured .btn-select-service {
    background: #ffffff;
    color: #667eea;
}

.urgency-block {
    padding: 80px 20px;
    background: #fff3cd;
}

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

.urgency-content h3 {
    font-size: 32px;
    color: #856404;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    color: #856404;
    margin-bottom: 10px;
}

.urgency-note {
    font-weight: 700;
    font-size: 20px;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #fa709a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-column p {
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #6c7a7b;
}

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

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 500;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.team-values h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.value-item p {
    font-size: 16px;
    color: #7f8c8d;
}

.products-catalog {
    padding: 80px 20px;
    background: #ffffff;
}

.products-catalog h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.product-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-visual {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.product-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-item p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

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

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #7f8c8d;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.btn-product {
    display: block;
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-product:hover {
    background: #5568d3;
}

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

.packages-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.contact-info {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.contact-block {
    flex: 1;
    text-align: center;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.contact-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-block a {
    color: #667eea;
    text-decoration: none;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

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

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
}

.thanks-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #27ae60;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

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

.thanks-details h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.thanks-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.thanks-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

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

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

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

.cookies-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .split-content {
        flex-direction: column;
    }

    .benefit-cards {
        flex-direction: column;
    }

    .benefit-card {
        min-width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

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

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

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

    .product-item {
        min-width: 100%;
    }

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

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