/* RD-CSS-001 RANKDATA 主樣式 */

/* ===== Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Variables ===== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #6366f1;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --white: #ffffff;
    --font: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== Base ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.highlight {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--danger), var(--warning));
    color: var(--white);
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

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

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo:hover {
    color: var(--dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 100px 0 20px;
    background: var(--gray-100);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb span {
    color: var(--gray-500);
    margin: 0 8px;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero .guarantee {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-score {
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* ===== Sections ===== */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* ===== Tools Preview ===== */
.tools-preview {
    background: var(--gray-100);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tool-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.tool-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.tools-preview .btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
    padding: 0 24px;
}

.service-card h3 {
    margin-top: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.service-card a {
    display: block;
    padding-bottom: 24px;
    font-weight: 600;
}

/* ===== Pricing Preview ===== */
.pricing-preview {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
}

.pricing-preview h2 {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    position: relative;
}

.pricing-card img {
    width: 150px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-card .price strong {
    font-size: 2.5rem;
    color: var(--primary);
}

.pricing-card .price-note {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== FAQ Preview ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-500);
}

.faq-preview .btn-outline {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-300);
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    padding: 6px 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== Mobile Fixed Bar ===== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-bar-btn {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.mobile-bar-btn:first-child {
    background: var(--accent);
    color: var(--white);
}

.mobile-bar-btn:last-child {
    background: #06c755;
    color: var(--white);
}

/* ===== About Page ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.contact-card .note {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Contact Page ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    text-align: left;
    margin-bottom: 12px;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-500);
    text-align: center;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: background 0.2s;
}

.contact-info-card:hover {
    background: var(--gray-200);
}

.contact-info-card .icon {
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-info-card .value {
    font-weight: 600;
    color: var(--dark);
}

.contact-info-card .note {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact-image {
    margin: 30px 0;
}

.contact-promise {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.contact-promise h3 {
    margin-bottom: 16px;
}

.contact-promise li {
    padding: 8px 0;
}

.contact-faq {
    background: var(--gray-100);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-bar {
        display: flex;
    }
    
    .footer {
        padding-bottom: 80px;
    }
}
/* RD-CSS-002 Batch 2 補充樣式 - 加到 style.css 後面 */

/* ===== Service Overview Page ===== */
.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-full-card.reverse {
    direction: rtl;
}

.service-full-card.reverse > * {
    direction: ltr;
}

.service-full-card:last-child {
    border-bottom: none;
}

.service-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.service-full-content h2 {
    text-align: left;
    margin-bottom: 16px;
}

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

.service-features li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.service-full-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Process Timeline */
.service-process {
    background: var(--gray-100);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-300);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    padding: 0 10px;
}

/* Service Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.detail-content h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.detail-content h2:first-child {
    margin-top: 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.standard-item {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.standard-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.guarantee-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 30px 0;
}

.score-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

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

.score-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.score-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.guarantee-text {
    font-size: 1.1rem;
}

.target-list {
    list-style: none;
    background: var(--gray-100);
    padding: 24px 30px;
    border-radius: var(--radius);
}

.target-list li {
    padding: 10px 0;
    font-size: 1.05rem;
}

/* Sidebar */
.detail-sidebar {
    position: relative;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.sidebar-card.sticky {
    position: sticky;
    top: 90px;
}

.sidebar-card img {
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    margin-bottom: 16px;
}

.sidebar-card ul {
    list-style: none;
    margin: 20px 0;
}

.sidebar-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-big {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.price-big strong {
    font-size: 2rem;
    color: var(--primary);
}

.sidebar-links {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.sidebar-links h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.sidebar-links a {
    display: block;
    padding: 10px 0;
    color: var(--gray-700);
}

.sidebar-links a:hover {
    color: var(--primary);
}

/* Monthly Service */
.monthly-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.monthly-item {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.monthly-item h3 {
    margin-bottom: 12px;
}

.monthly-item ul {
    list-style: none;
}

.monthly-item li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.update-response {
    list-style: none;
    margin: 20px 0;
}

.update-response li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* Report Sections */
.report-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.report-item {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.report-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tools-used {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.tool-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.tool-badge strong {
    display: block;
    margin-bottom: 4px;
}

.tool-badge span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.report-example {
    background: var(--dark);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.report-example h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.report-example ol {
    margin-left: 20px;
}

.report-example li {
    padding: 6px 0;
}

/* ===== Pricing Page ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-large {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s;
}

.pricing-card-large:hover {
    transform: translateY(-5px);
}

.pricing-card-large.featured {
    border-color: var(--primary);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.85rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-header {
    background: var(--gray-100);
    padding: 30px;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header h2 {
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--gray-500);
}

.pricing-body {
    padding: 30px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.price-label {
    color: var(--gray-500);
}

.price-amount strong {
    font-size: 1.8rem;
    color: var(--primary);
}

.price-unit {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-features {
    margin: 24px 0;
}

.pricing-features h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 8px 0;
}

/* Pricing Detail Page */
.price-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-box {
    background: var(--gray-100);
    padding: 24px 40px;
    border-radius: var(--radius);
    text-align: center;
}

.price-type {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.price-value strong {
    font-size: 2.5rem;
    color: var(--primary);
}

.price-plus {
    font-size: 2rem;
    color: var(--gray-300);
}

.price-note-big {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.service-checklist {
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.checklist-item .check {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: bold;
}

.checklist-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.checklist-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.cost-calculator {
    margin: 30px 0;
    overflow-x: auto;
}

.cost-calculator table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cost-calculator th,
.cost-calculator td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.cost-calculator th {
    background: var(--gray-100);
}

.cost-calculator td:last-child {
    text-align: right;
}

.sidebar-price {
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-price p {
    margin: 8px 0;
}

.sidebar-price strong {
    font-size: 1.3rem;
    color: var(--primary);
}

.sidebar-guarantee {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 16px;
}

.sidebar-guarantee p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.sidebar-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 12px;
}

/* Market List */
.market-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.market-yes, .market-no {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.market-yes h4, .market-no h4 {
    margin-bottom: 16px;
}

.market-yes ul, .market-no ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.market-yes li, .market-no li {
    padding: 6px 0;
}

.why-global {
    list-style: none;
    margin: 20px 0;
}

.why-global li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== Responsive for Batch 2 ===== */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        order: -1;
    }
    
    .sidebar-card.sticky {
        position: static;
    }
    
    .standards-grid,
    .monthly-service,
    .report-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-full-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-full-card.reverse {
        direction: ltr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .price-summary {
        flex-direction: column;
    }
    
    .price-plus {
        transform: rotate(90deg);
    }
    
    .market-list {
        grid-template-columns: 1fr;
    }
    
    .market-yes ul, .market-no ul {
        grid-template-columns: 1fr;
    }
}
/* RD-CSS-003 Batch 3 補充樣式 - 工具頁專用 */

/* ===== Tools Page ===== */
.tools-category {
    padding: 60px 0;
}

.tools-category.alt {
    background: var(--gray-100);
}

.tools-category h2 {
    text-align: left;
    margin-bottom: 12px;
}

.category-desc {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.tools-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tool-card-full {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.tool-card-full:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.tool-card-full img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.tool-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.tool-info p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    line-height: 1.5;
}

.tool-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Tool Detail Page */
.tool-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tool-badge-inline {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.step p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.tool-link-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 40px;
}

.tool-link-box h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.tool-link-box .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.tool-info-list {
    list-style: none;
    margin-top: 16px;
}

.tool-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.tool-info-list li:last-child {
    border-bottom: none;
}

/* Score Guide */
.score-guide {
    display: flex;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.score-guide .score-item {
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.score-guide .score-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.score-guide .good {
    background: #d4edda;
    color: #155724;
}

.score-guide .medium {
    background: #fff3cd;
    color: #856404;
}

.score-guide .poor {
    background: #f8d7da;
    color: #721c24;
}

.optimize-list {
    list-style: none;
    margin: 20px 0;
}

.optimize-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.compare-table th,
.compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.compare-table th {
    background: var(--gray-100);
}

/* ===== Responsive for Batch 3 ===== */
@media (max-width: 768px) {
    .tools-grid-full {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .tool-card-full {
        flex-direction: column;
        text-align: center;
    }
    
    .tool-card-full img {
        margin: 0 auto;
    }
    
    .score-guide {
        flex-direction: column;
    }
}
/* RD-CSS-004 Batch 4 補充樣式 - FAQ 頁專用 */

/* ===== FAQ Grid ===== */
.faq-full-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.2s;
    display: block;
}

.faq-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.faq-num {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}

.faq-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-align: left;
    color: var(--dark);
}

.faq-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.faq-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quick FAQ */
.quick-faq {
    background: var(--gray-100);
    padding: 60px 0;
}

.quick-faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* FAQ Detail Page */
.faq-detail {
    padding: 60px 0;
}

.short-answer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.short-answer h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.short-answer p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.full-answer h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.full-answer h2:first-child {
    margin-top: 0;
}

.full-answer h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.full-answer p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.full-answer ul,
.full-answer ol {
    margin: 20px 0;
    padding-left: 24px;
}

.full-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    margin: 30px 0;
    border-left: 3px solid var(--primary);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.timeline-item p {
    color: var(--gray-500);
}

/* Guarantee Box in FAQ */
.full-answer .guarantee-box {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.full-answer .guarantee-box p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.full-answer .guarantee-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.full-answer .guarantee-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* Service Checklist in FAQ */
.full-answer .service-checklist {
    margin: 30px 0;
}

.full-answer .checklist-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.full-answer .checklist-item .check {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.full-answer .checklist-item h4 {
    margin-bottom: 4px;
}

.full-answer .checklist-item p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Feature List in FAQ */
.full-answer .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.full-answer .feature-item {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
}

.full-answer .feature-item h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 8px;
}

.full-answer .feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* Steps in FAQ */
.full-answer .steps {
    margin: 30px 0;
}

.full-answer .step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

.full-answer .step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.full-answer .step h4 {
    margin-bottom: 6px;
}

.full-answer .step p {
    margin: 0;
    color: var(--gray-500);
}

/* ===== Responsive for Batch 4 ===== */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .full-answer .feature-list {
        grid-template-columns: 1fr;
    }
}
/* RD-CSS-005 Batch 5 補充樣式 - Geo 頁專用 */

/* ===== Geo Section ===== */
.geo-section {
    padding: 60px 0;
}

.geo-section.alt {
    background: var(--gray-100);
}

.geo-section h2 {
    text-align: left;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.geo-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.geo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.geo-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(0,123,255,0.03) 0%, var(--white) 100%);
}

.geo-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.geo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.geo-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* Geo Hero (Detail Page) */
.geo-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.geo-hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.geo-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.geo-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.geo-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.geo-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
}

/* Geo Detail */
.geo-detail {
    padding: 60px 0;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.industry-tags::before {
    content: '';
}

.strategy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.strategy-item {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
}

.strategy-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.strategy-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
}

.service-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
}

/* Geo CTA Card */
.geo-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.geo-cta-card h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.geo-cta-card .price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.geo-cta-card .price-label {
    opacity: 0.9;
}

.geo-cta-card .price-amount {
    font-size: 1.2rem;
    font-weight: bold;
}

.geo-cta-card .guarantee-badges {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.geo-cta-card .guarantee-badges li {
    padding: 8px 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.geo-cta-card .btn-primary {
    background: var(--white);
    color: var(--primary);
    margin-top: 10px;
}

/* Local SEO Explain */
.local-seo-explain {
    background: var(--gray-100);
    padding: 60px 0;
}

.local-seo-explain h2 {
    text-align: center;
    margin-bottom: 40px;
}

.explain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.explain-item {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.explain-item h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.explain-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===== Responsive for Batch 5 ===== */
@media (max-width: 1024px) {
    .geo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .explain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-grid {
        grid-template-columns: 1fr;
    }
    
    .explain-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-list {
        grid-template-columns: 1fr;
    }
    
    .geo-stats {
        flex-direction: column;
        gap: 12px;
    }
}
/* RD-CSS-006 Batch 6 補充樣式 */

/* Authority Grid */
.authority-grid-section { padding: 60px 0; }
.authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.authority-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; text-align: center; transition: all 0.2s; }
.authority-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.authority-card.featured { border: 2px solid var(--primary); background: linear-gradient(180deg, rgba(0,123,255,0.05), var(--white)); }
.auth-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.authority-card h2 { font-size: 1.2rem; margin-bottom: 8px; text-align: center; }
.authority-card p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }

/* Trust Signals */
.trust-signals { background: var(--gray-100); padding: 60px 0; }
.trust-signals h2 { text-align: center; margin-bottom: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { text-align: center; }
.trust-num { display: block; font-size: 2.5rem; font-weight: bold; color: var(--primary); }
.trust-label { color: var(--gray-500); }

/* Cases */
.cases-section { padding: 60px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.case-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all 0.2s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-info { padding: 24px; }
.case-tag { display: inline-block; background: var(--primary); color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 12px; }
.case-info h3 { margin-bottom: 8px; }
.case-info p { color: var(--gray-500); margin-bottom: 12px; }
.case-stats { display: flex; gap: 16px; font-size: 0.9rem; color: var(--gray-600); }

/* Case Hero */
.case-hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 80px 0; text-align: center; }
.case-tag-large { display: inline-block; background: rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 30px; margin-bottom: 16px; }
.case-hero h1 { color: var(--white); margin-bottom: 12px; }
.case-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }
.case-hero-stats { display: flex; justify-content: center; gap: 30px; }
.stat-box { background: rgba(255,255,255,0.15); padding: 20px 40px; border-radius: var(--radius); }
.stat-num { display: block; font-size: 2rem; font-weight: bold; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

/* Testimonials */
.testimonials-section { padding: 60px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; }
.testimonial-rating { color: #ffc107; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; }
.testimonial-author span { color: var(--gray-500); font-size: 0.9rem; }
.testimonial-quote { background: var(--gray-100); padding: 24px; border-left: 4px solid var(--primary); border-radius: var(--radius); font-style: italic; }

/* Team */
.team-section { padding: 60px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.team-card h3 { margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 0.9rem; margin-bottom: 12px; }
.team-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Process */
.process-section { padding: 60px 0; }
.process-timeline { max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--gray-200); }
.process-num { width: 50px; height: 50px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }
.process-content h3 { margin-bottom: 8px; }
.process-content p { color: var(--gray-500); margin-bottom: 8px; }
.process-time { display: inline-block; background: var(--gray-100); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; color: var(--gray-600); }

/* Guarantee */
.guarantee-section { padding: 60px 0; }
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guarantee-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.guarantee-card.main { border: 2px solid var(--primary); background: linear-gradient(180deg, rgba(0,123,255,0.05), var(--white)); }
.guarantee-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.guarantee-card h3 { margin-bottom: 12px; }
.guarantee-card p { color: var(--gray-500); font-size: 0.95rem; }

/* Portfolio */
.portfolio-section { padding: 60px 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; height: 180px; object-fit: cover; }
.portfolio-info { padding: 20px; }
.portfolio-tag { display: inline-block; background: var(--gray-100); padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; margin-bottom: 8px; }
.portfolio-info h3 { font-size: 1rem; margin-bottom: 8px; }
.portfolio-score { display: flex; gap: 12px; font-size: 0.85rem; color: var(--gray-600); }
.portfolio-score span { background: #d4edda; color: #155724; padding: 2px 8px; border-radius: 4px; }

/* Industry */
.industry-section { padding: 60px 0; }
.industry-section.alt { background: var(--gray-100); }
.industry-section h2 { text-align: left; margin-bottom: 20px; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; text-align: center; transition: all 0.2s; }
.industry-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.industry-card span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.industry-card h3 { font-size: 0.95rem; margin: 0; }
.industry-hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 80px 0; text-align: center; }
.industry-icon { font-size: 4rem; display: block; margin-bottom: 16px; }
.industry-hero h1 { color: var(--white); }
.industry-detail { padding: 60px 0; }
.industry-cta { background: var(--primary); color: var(--white); }
.industry-cta h3 { color: var(--white); }

/* VS */
.vs-section { padding: 60px 0; }
.vs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vs-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; transition: all 0.2s; }
.vs-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.vs-card h3 { margin-bottom: 8px; }
.vs-card p { color: var(--gray-500); margin: 0; }
.vs-detail { padding: 60px 0; }
.conclusion-box { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 30px; border-radius: var(--radius-lg); margin-bottom: 40px; }
.conclusion-box p { font-size: 1.1rem; margin: 0; }

/* Blog */
.blog-section { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; transition: all 0.2s; }
.blog-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.blog-tag { display: inline-block; background: var(--primary); color: var(--white); padding: 2px 10px; border-radius: 4px; font-size: 0.75rem; margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; line-height: 1.5; }
.blog-article { padding: 60px 0; }
.article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.article-tag { display: inline-block; background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 0.85rem; margin-bottom: 16px; }
.article-content h1 { text-align: left; margin-bottom: 12px; }
.article-meta { display: flex; gap: 20px; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 30px; }
.article-content .lead { font-size: 1.15rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 30px; }
.article-content h2 { text-align: left; margin-top: 40px; margin-bottom: 16px; }
.article-content p { line-height: 1.8; margin-bottom: 16px; }
.article-content ul { margin: 20px 0; padding-left: 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.6; }
.article-sidebar { position: sticky; top: 100px; }

/* Responsive Batch 6 */
@media (max-width: 1024px) {
    .authority-grid, .guarantee-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .authority-grid, .cases-grid, .testimonials-grid, .guarantee-grid, .portfolio-grid, .vs-grid { grid-template-columns: 1fr; }
    .trust-grid, .team-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }
    .case-hero-stats { flex-direction: column; gap: 16px; }
}

/* ===== Homepage Search Box ===== */
.search-box {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 30px auto;
    padding: 8px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.url-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background: #1e293b;
    color: #fff;
    outline: none;
}

.url-input::placeholder {
    color: #64748b;
}

.url-input:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.scan-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.scan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.tools-list {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 640px) {
    .search-box {
        flex-direction: column;
    }
    .scan-btn {
        width: 100%;
    }
}
