@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap');

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Satoshi', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 60px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-alt {
    background-color: #FDFFFF;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(24, 114, 131, 0.1);
    padding: 20px 0;
    width: 100%;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.header-cta {
    background: #FF7338;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.header-cta:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #187283 0%, #1a7a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-text p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #FF7338;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

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

.cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: #187283;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-item {
    padding: 30px 20px;
    border-left: 4px solid #FF7338;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.problem-item h3 {
    color: #FF7338;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 30px 20px;
}

.pillar h3 {
    color: #187283;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: #187283;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #187283;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.process-step h3 {
    color: #187283;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step ul {
    list-style: none;
    padding-left: 0;
}

.process-step li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.process-step li:before {
    content: "•";
    color: #FF7338;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.result-icon {
    width: 24px;
    height: 24px;
    background: #187283;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    position: relative;
}

.result-icon:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.result-content h4 {
    color: #187283;
    font-weight: 600;
    margin-bottom: 5px;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #187283;
}

.about-content h3 {
    color: #187283;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.about-content li:before {
    content: "•";
    color: #FF7338;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Investment Section */
.investment-box {
    background: linear-gradient(135deg, #187283 0%, #1a7a8a 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.investment-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-note {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
}

.guarantee-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.guarantee-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: #187283;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #187283;
    transition: transform 0.3s;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    line-height: 1.6;
    color: #555;
}

/* Final CTA Section */
.final-cta {
    background: #f8f9fa;
    text-align: center;
    padding: 60px 0;
}

.cta-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: #187283;
    background: #f8f9fa;
}

.contact-method h4 {
    color: #187283;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', 'Inter', sans-serif;
    line-height: 1.3;
}

h2 {
    color: #187283;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

h3 {
    color: #187283;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 38px;
        width: auto;
        object-fit: contain;
        object-position: left center;
    }

    .header-cta {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .cta-button {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .about-photo {
        margin: 0 auto;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }

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

    .price {
        font-size: 2.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

