/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

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

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

/* Hero Full - Long Form Funnel Style */
.hero-full {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

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

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

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

/* Story Section - Editorial Style */
.story-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.story-section h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.insight-box {
    background: #ffffff;
    padding: 40px;
    margin: 50px 0;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.insight-box p {
    margin-bottom: 15px;
}

/* Problem Visual - Split Layout */
.problem-visual {
    padding: 0;
}

.split-layout {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2c3e50;
    color: #ffffff;
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    margin-bottom: 40px;
}

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

.problem-list li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
}

.cta-inline {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Reveal Section */
.reveal-section {
    padding: 100px 20px;
    background: #ffffff;
}

.reveal-header {
    text-align: center;
    margin-bottom: 60px;
}

.reveal-label {
    display: inline-block;
    padding: 8px 20px;
    background: #3498db;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.reveal-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Trust Section - Process Steps */
.trust-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: #3498db;
    opacity: 0.2;
    margin-bottom: 10px;
}

.step h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* Testimonial Inline */
.testimonial-inline {
    padding: 100px 20px;
    background: #34495e;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-inline cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.8;
}

/* Visual Showcase */
.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1 1 50%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: scale(1.02);
}

.showcase-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 5px;
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.pricing-intro {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    color: #555;
}

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

.price-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #3498db;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.price {
    font-size: 42px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
}

.price-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

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

.cta-price {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-price:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: #fff3cd;
}

.urgency-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.cta-submit {
    width: 100%;
    padding: 18px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #667eea;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
}

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #ecf0f1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

/* Page Hero - For Internal Pages */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

/* About Page Styles */
.about-story,
.approach-section,
.values-section,
.team-section {
    padding: 80px 20px;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.values-list {
    margin-top: 50px;
}

.value-item {
    padding: 30px 0;
    border-bottom: 1px solid #ecf0f1;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #3498db;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-detail {
    padding: 60px 20px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 25px;
}

.service-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.service-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.cta-service {
    padding: 15px 35px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

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

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

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    height: 400px;
    background: #ecf0f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #7f8c8d;
}

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

/* Thanks Page Styles */
.thanks-section {
    padding: 150px 20px 100px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 18px;
}

.thanks-next {
    margin: 60px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 30px;
}

.thanks-steps li {
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 20px 100px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

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

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

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-floating {
        width: calc(100% - 40px);
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-full h1 {
        font-size: 38px;
    }

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

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

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

    .split-content {
        padding: 50px 30px;
    }

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

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

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

    .price-card {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .hero-full h1 {
        font-size: 32px;
    }

    .container-narrow,
    .container {
        padding: 0 15px;
    }

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

    .urgency-box {
        padding: 30px 20px;
    }

    .footer-grid {
        gap: 40px;
    }

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

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