:root {
    --primary-red: #d11f1f;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f5f6f8;
    --timer-green: #2aa146;
    --border-color: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header */
.header {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.search-icon {
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.1;
    color: #000;
}

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

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

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

/* Main Article Container */
.article-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-red {
    color: var(--primary-red);
}

.article-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.article-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Author Meta */
.author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-light);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.article-date-time {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.article-date-time i {
    margin-right: 5px;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-watermark {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.hero-watermark img {
    width: 20px;
    height: 20px;
}

.hero-watermark span {
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-share a {
    color: var(--text-light);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-share a:hover {
    color: #000;
}

/* Article Content */
.article-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #222;
}

/* CTA Section */
.cta-section {
    margin-top: 50px;
    text-align: center;
    padding-bottom: 40px;
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.urgency-timer {
    margin-bottom: 25px;
}

.timer-label {
    display: block;
    color: var(--timer-green);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 5px;
}

.timer-box {
    display: inline-block;
    background-color: var(--timer-green);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
}

/* Form */
.lead-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lead-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.lead-form input:focus {
    border-color: var(--primary-red);
}

.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.phone-input-group:focus-within {
    border-color: var(--primary-red);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px 0 15px;
    background: #f9f9f9;
    border-right: 1px solid #ccc;
    height: 100%;
    font-size: 14px;
    color: #555;
}

.country-code img {
    border-radius: 2px;
}

.phone-input-group input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.phone-input-group input:focus {
    border: none;
}

.submit-btn {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 5px;
}

.submit-btn:hover {
    background-color: #b01a1a;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.logo-text-vertical {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    color: #000;
}

.slogan {
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}

.copyright {
    font-size: 11px;
    color: #888;
}

/* Analyst Notice */
.analyst-notice {
    max-width: 400px;
    margin: 25px auto 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    text-align: center;
}

.notice-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.analyst-notice p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}

.analyst-notice strong {
    color: var(--primary-red);
}

.notice-sub {
    font-size: 13px !important;
    color: #666 !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* Thank You Page */
.thankyou-container {
    max-width: 600px;
    width: 100%;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
    overflow-x: hidden;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--timer-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.thankyou-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.thankyou-call-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 3px solid #ffc107;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.thankyou-call-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thankyou-call-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thankyou-call-box .highlight {
    background: var(--primary-red);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.call-box-list {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.call-box-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.call-box-warning {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 15px;
}

.thankyou-steps {
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.thankyou-steps h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.step-text strong {
    color: var(--primary-red);
}

@media (max-width: 600px) {
    .nav-menu {
        display: none;
    }

    .article-title {
        font-size: 26px;
    }

    /* Thank You Page Mobile Fixes */
    .thankyou-container {
        margin: 30px auto;
        padding: 20px 15px;
    }

    .thankyou-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .thankyou-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .thankyou-message {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .thankyou-call-box {
        padding: 20px 15px;
        margin: 20px 0;
        border-width: 2px;
    }

    .thankyou-call-box h3 {
        font-size: 17px;
        flex-direction: column;
        gap: 8px;
    }

    .thankyou-call-box p {
        font-size: 14px;
    }

    .thankyou-call-box ul {
        padding-left: 15px !important;
        margin: 15px 0 !important;
    }

    .thankyou-call-box ul li {
        font-size: 14px;
        margin-bottom: 8px !important;
    }

    .thankyou-steps {
        margin: 20px auto;
    }

    .thankyou-steps h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .step-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .step-text {
        font-size: 14px;
    }

    .analyst-notice {
        padding: 15px;
        margin: 20px auto 0;
    }

    .notice-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .analyst-notice p {
        font-size: 13px;
    }
}
