* {
    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: #333;
    background-color: #fff;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5568d3;
}

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

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

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

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

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

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

.nav-menu li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-fullscreen {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

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

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-large {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero-primary {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.story-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.story-intro {
    font-size: 24px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.story-text-bold {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 40px 0;
    line-height: 1.6;
}

.story-image-inline {
    margin: 50px 0;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.story-heading {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 50px 0 25px;
    line-height: 1.3;
}

.story-list {
    list-style-position: inside;
    margin: 20px 0 30px 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.story-list li {
    margin-bottom: 12px;
}

.cta-inline {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.insight-section {
    padding: 100px 0;
    background-color: white;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.insight-visual {
    flex: 1;
}

.problem-section {
    padding: 100px 0;
    background-color: #fef3f2;
}

.section-heading-center {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}

.problem-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c53030;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.problem-conclusion {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
}

.offer-reveal-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.reveal-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.offer-description {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 19px;
    line-height: 1.8;
}

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

.offer-benefits li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.offer-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 17px;
    opacity: 0.9;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

.testimonials-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

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

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
}

.services-pricing-section {
    padding: 100px 0;
    background-color: white;
}

.pricing-headline {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.btn-select-service {
    width: 100%;
    background-color: #667eea;
    color: white;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 80px 0;
    background-color: #fff7ed;
}

.urgency-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.urgency-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #c2410c;
    background-color: #ffedd5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.form-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.form-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #667eea;
    color: white;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
}

.final-cta-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-final-button {
    display: inline-block;
    background-color: white;
    color: #4facfe;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-final-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

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

.sticky-cta-button {
    display: block;
    background-color: #f5576c;
    color: white;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #e14758;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.5);
}

.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-column ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #667eea;
    color: white;
}

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

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

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

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

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
    background-color: white;
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.about-image {
    margin: 50px 0;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 50px 0 25px;
}

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

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.services-detail-section {
    padding: 80px 0;
    background-color: white;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin: 30px 0 20px;
}

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

.services-cta-section {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.services-cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 35px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-info-card a {
    color: #667eea;
    font-weight: 600;
}

.contact-map {
    margin: 60px 0;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

.contact-additional {
    margin-top: 60px;
}

.contact-additional h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-info {
    background-color: #f0fdf4;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.selected-service {
    font-size: 17px;
    color: #166534;
}

.thanks-next-steps {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
}

.thanks-list {
    text-align: left;
    list-style-position: inside;
    margin: 20px 0 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.thanks-list li {
    margin-bottom: 10px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #e5e7eb;
    color: #374151;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d1d5db;
    transform: translateY(-2px);
}

.legal-section {
    padding: 100px 0;
    background-color: white;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section h1 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 50px 0 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin: 30px 0 15px;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-section ul {
    margin: 20px 0 30px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

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

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
    font-size: 15px;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-title {
        font-size: 32px;
    }

    .main-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .section-heading-center,
    .pricing-headline,
    .testimonials-heading {
        font-size: 28px;
    }

    .final-cta-heading {
        font-size: 32px;
    }
}
