:root {
    --bg-white: #F8FAFC; 
    --bg-light: #FFFFFF; 
    --primary-blue: #2563EB; 
    --navy: #0F172A; 
    --secondary-ui: #64748B; 
    --text-main: #1E293B; 
    --text-muted: #64748B; 
    --border: rgba(0, 0, 0, 0.05); 
    --accent-red: #EF4444;
    --shadow-premium: 0 8px 20px rgba(0,0,0,0.06);
}

* {
    box-sizing: border-box;
    margin: 0; padding: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    overflow-wrap: normal;
    letter-spacing: -0.02em;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%; 
    word-break: keep-all;
}

body { 
    background: var(--bg-white); 
    color: var(--text-main); 
    line-height: 1.5; 
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
    color: var(--navy);
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
    width: 100%;
}

.section { padding: 8rem 0; width: 100%; } 
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }

/* Navbar */
.navbar { 
    position: sticky; 
    top: 0; 
    width: 100%; 
    background: #ffffff; 
    border-bottom: 1px solid #eee; 
    z-index: 1000; 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 40px; 
    max-width: 1100px; 
    margin: 0 auto; 
    position: relative;
}

@media (max-width: 850px) {
    .nav-container {
        padding: 12px 24px;
    }
}

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

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 28px; 
    justify-content: center;
}

.nav-item {
    text-decoration: none;
    color: #334155; 
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-highlight { 
    text-decoration: none; 
    font-weight: 600; 
    color: #fff; 
    background: #2563eb; 
    padding: 10px 18px; 
    border-radius: 10px; 
    font-size: 0.9rem; 
    transition: all 0.2s ease;
}

.nav-cta-highlight:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

@media (max-width: 850px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none; /* Hide on mobile by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid #eee;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

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

    .nav-item {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero { 
    padding-top: 120px; 
    padding-bottom: 120px; 
    position: relative; /* Ensure relative for absolute child */
}

/* Hero 방향성 흐름 애니메이션 */
.direction-flow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;           /* 텍스트 아래로 */
}

.flow-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.flow-path {
    stroke-dasharray: 2000;          /* 경로 길이보다 크게 잡음 */
    stroke-dashoffset: 2000;
    animation: draw-flow 5s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-delay: 0.8s;           /* 페이지 로드 후 살짝 늦게 시작 */
}

/* 선이 그려지는 애니메이션 */
@keyframes draw-flow {
    to {
        stroke-dashoffset: 0;
    }
}

/* 모바일/저사양 대응: 움직임 줄이기 */
@media (prefers-reduced-motion: reduce) {
    .flow-path {
        animation: none;
        stroke-dashoffset: 0;
    }
}

.hero .container {
    max-width: 900px; 
    position: relative;
    z-index: 1; /* Keep content above animation */
}

.headline { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.15; 
    margin-bottom: 1.5rem; 
    word-break: keep-all;
}

.sub-headline { 
    font-size: 1.25rem; 
    color: var(--secondary-ui); 
    line-height: 1.6; 
    margin-bottom: 3rem; 
    font-weight: 400; 
}

.loss-highlight { color: var(--accent-red); font-weight: 700; }

.hero-supporting { 
    text-align: center;
    margin-top: 14px;
    font-size: 0.9rem; 
    color: var(--text-muted); 
    background: rgba(255, 255, 255, 0.5); 
    display: inline-block; 
    padding: 0.6rem 1.2rem; 
    border-radius: 50px; 
    border: 1px solid var(--border); 
}
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 24px;
    margin-left: 0;
}

.cta-wrapper .cta-button {
    margin-left: 0;
    margin-right: auto;
}

.cta-reassurance {
    text-align: left;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--secondary-ui);
}
    font-weight: 500;
}

/* Premium SaaS Buttons (Linear, Notion style) */
.cta-button, .cta-btn { 
    display: inline-block; 
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%); 
    color: #ffffff !important; 
    text-decoration: none !important; 
    padding: 18px 48px; 
    border-radius: 14px; 
    font-weight: 700; 
    font-size: 20px; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 0 8px 10px -6px rgba(37, 99, 235, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

.cta-button:hover, .cta-btn:hover { 
    transform: scale(1.05); 
    background: #1d4ed8;
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.5), 0 10px 15px -8px rgba(37, 99, 235, 0.3);
    color: #ffffff !important;
}

.cta-button:active, .cta-btn:active {
    transform: scale(0.98);
}

.cta-button.full {
    width: 100%;
    max-width: 380px;
}

/* Grid & Cards */
.section-title { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; color: var(--navy); }
.section-subtitle { font-size: 1.1rem; color: var(--secondary-ui); margin-bottom: 3rem; }

.feature-grid, .filter-grid, .layer-grid, .process-grid, .testimonial-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item, .filter-card, .layer-item, .process-card, .testimonial-card, .creator-card, .pricing-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-item { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; }
.feature-icon { width: 40px; height: 40px; background: #EEF2FF; color: var(--primary-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.feature-text { font-weight: 700; color: var(--navy); }

.filter-card.stop { border-top: 6px solid var(--accent-red); }
.filter-card.go { border-top: 6px solid var(--primary-blue); }
.filter-card h3 { margin-bottom: 1.5rem; font-size: 1.25rem; font-weight: 800; }
.filter-card ul { list-style: none; }
.filter-card li { margin-bottom: 0.8rem; position: relative; padding-left: 1.8rem; font-size: 1rem; font-weight: 500; }
.filter-card.stop li::before { content: "✕"; position: absolute; left: 0; color: var(--accent-red); font-weight: 900; }
.filter-card.go li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-blue); font-weight: 900; }

.layer-item { position: relative; padding-top: 3rem; }
.layer-num { position: absolute; top: 1.5rem; left: 2.5rem; background: var(--navy); color: #fff; padding: 2px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; }
.layer-item h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.layer-item p { font-size: 0.9rem; color: var(--secondary-ui); }

.process-card { text-align: center; }
.step-label { color: var(--primary-blue); font-weight: 800; font-size: 0.8rem; margin-bottom: 0.5rem; display: block; }

.testimonial-card .quote { font-style: italic; margin-bottom: 1.5rem; color: var(--text-main); }
.testimonial-card .author { font-weight: 800; font-size: 0.9rem; }

.creator-card { max-width: 700px; margin: 0 auto; }
.creator-tags { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tag { background: #F1F5F9; color: var(--secondary-ui); padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.8rem; font-weight: 700; }
.creator-profile { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; }

/* 9. RECRUITMENT & PRICING */
.recruitment-card { max-width: 600px; margin: 0 auto; text-align: center; background: var(--bg-light); border: 1px solid var(--border); padding: 3rem 2rem; border-radius: 24px; box-shadow: var(--shadow-premium); }
.recruitment-desc { font-size: 1.1rem; color: var(--secondary-ui); margin-bottom: 2rem; line-height: 1.6; word-break: keep-all; }
.benefit-box { background: #EEF2FF; border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; border: 1px solid #E0E7FF; }
.benefit-box p { color: var(--primary-blue); font-weight: 700; font-size: 1.1rem; word-break: keep-all; }
.price-comparison { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.old-price { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.price-arrow { font-size: 1.5rem; color: var(--text-muted); }
.new-price { font-size: 1.8rem; color: var(--navy); }
.new-price strong { color: var(--primary-blue); font-weight: 800; font-size: 2.2rem; }
.limit-info { font-size: 1.1rem; font-weight: 800; color: var(--accent-red); margin-bottom: 2.5rem; }
.participation { background: #F8FAFC; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); }
.participation-label { font-size: 0.9rem; color: var(--secondary-ui); font-weight: 700; margin-bottom: 0.5rem; }
.participation-count { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.participation-count .current { color: var(--primary-blue); }
.participation-progress { height: 10px; background: #E2E8F0; border-radius: 10px; overflow: hidden; max-width: 300px; margin: 0 auto; }
.participation-progress .progress-bar { height: 100%; background: var(--primary-blue); border-radius: 10px; transition: width 0.5s ease; }

.pricing-card { max-width: 500px; margin: 0 auto; text-align: center; position: relative; overflow: visible; }
.pricing-badge { background: var(--primary-blue); color: white; padding: 0.4rem 1.2rem; font-size: 0.8rem; font-weight: 800; border-radius: 50px; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.price { font-size: 4rem; font-weight: 800; margin: 1.5rem 0; }
.price span { font-size: 1.5rem; }
.price-roadmap { background: #F8FAFC; border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; }

.sample-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 4rem; }
.sample-item img { border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.sample-label { margin-top: 1.5rem; font-weight: 700; color: var(--text-muted); }

.faq-list { max-width: 700px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 0; }
.faq-item h4 { margin-bottom: 0.75rem; font-size: 1.1rem; font-weight: 800; }

.footer { padding: 6rem 0; border-top: 1px solid var(--border); background: #fff; color: var(--text-muted); font-size: 0.9rem; }

/* Blog Specific Styles */
.reading-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.blog-header { padding: 8rem 0 4rem; text-align: center; }
.blog-title { font-size: 2.5rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
.blog-subtitle { font-size: 1.1rem; color: var(--secondary-ui); }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-card { background: var(--bg-light); border-radius: 20px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; text-decoration: none; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-premium); border-color: var(--primary-blue); }
.blog-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 600; }
.blog-card-title { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-desc { font-size: 0.95rem; color: var(--secondary-ui); margin-bottom: 1.5rem; line-height: 1.6; }
.blog-card-link { margin-top: auto; font-weight: 700; color: var(--primary-blue); font-size: 0.95rem; }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 6rem; }
.page-link { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid var(--border); text-decoration: none; color: var(--text-main); font-weight: 600; transition: all 0.2s; }
.page-link:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.page-link.active { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

.post-header { padding: 8rem 0 3rem; text-align: center; border-bottom: 1px solid var(--border); background: var(--bg-light); }
.post-date { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 600; }
.post-title { font-size: 2.25rem; font-weight: 900; color: var(--navy); line-height: 1.3; }

.post-content { padding: 4rem 0; font-size: 1.1rem; line-height: 1.8; color: var(--text-main); }
.post-content h2 { font-size: 1.75rem; font-weight: 800; margin: 3rem 0 1.5rem; color: var(--navy); }
.post-content h3 { font-size: 1.4rem; font-weight: 800; margin: 2rem 0 1rem; color: var(--navy); }
.post-content p { margin-bottom: 1.5rem; }
.post-content ul, .post-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content a { color: var(--primary-blue); text-decoration: underline; font-weight: 600; }

.related-section { padding: 4rem 0; border-top: 1px solid var(--border); }
.related-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; color: var(--navy); }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-cta { background: var(--navy); color: #fff; padding: 3.5rem 2rem; border-radius: 24px; text-align: center; margin-top: 4rem; }
.post-cta h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }
.post-cta p { font-size: 1.05rem; margin-bottom: 2.5rem; opacity: 0.9; line-height: 1.6; color: #fff; }
.cta-btn { 
    display: inline-block; 
    background: var(--primary-blue); 
    color: #ffffff !important; /* Ensure white text */
    text-decoration: none !important; /* Remove underline from global link styles */
    padding: 1.1rem 2.2rem; 
    border-radius: 12px; 
    font-weight: 800; 
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); 
    background: #1d4ed8;
    color: #ffffff !important;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .filter-grid { grid-template-columns: 1fr 1fr; }
    .layer-grid { grid-template-columns: repeat(4, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.headline br, .sub-headline br {
    content: "";
    display: block;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .section { padding: 5rem 0; }
    /* Mobile Toggle and Menu adjusted above */
}

/* GDP Counter */
.gdp-counter-wrap {
  margin: 2rem 0 1rem;
  text-align: left;
}
.gdp-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.4rem;
}
.gdp-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.gdp-source {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.3rem;
}

@media (max-width: 850px) {
  .mobile-hide { display: none; }
}

.mobile-only { display: none; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
}

.badge {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid #1E293B;
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.badge-item {
  font-size: 13px;
  font-weight: 500;
  color: #1E293B;
}
.badge-dot {
  width: 3px;
  height: 3px;
  background: #1E293B;
  border-radius: 50%;
  margin: 0 10px;
}

/* Footer Refined Styles */
.footer {
    padding: 5rem 0 3rem;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.footer-brand-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.footer-brand-name span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 0.5rem;
}

.footer-brand-tagline {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-divider {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 2rem;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.footer-notice {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-copy {
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .footer-links {
        gap: 1rem;
    }
}

/* FAQ Refined Styles */
.faq-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.faq-lead {
    text-align: center;
    font-size: 15px;
    color: #64748B;
    margin-bottom: 36px;
}
.faq-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}
.faq-tab {
    padding: 7px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    color: #64748B;
    font-family: 'Pretendard', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.faq-tab:hover { border-color: #94A3B8; color: #334155; }
.faq-tab.active { border-color: #2563EB; color: #2563EB; background: rgba(37,99,235,0.07); box-shadow: none; }

.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 720px; margin: 0 auto; }

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: #CBD5E1; box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.faq-item.open { border-color: #2563EB; box-shadow: 0 4px 20px rgba(37,99,235,0.10); }
.faq-item.hidden { display: none; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #0F172A;
    font-family: 'Pretendard', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s;
}
.faq-item.open .faq-question { color: #2563EB; }

.faq-q-left { display: flex; align-items: flex-start; gap: 12px; }

.faq-num {
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    min-width: 20px;
    padding-top: 3px;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.faq-item.open .faq-num { color: #2563EB; }

.faq-icon {
    width: 24px; height: 24px; min-width: 24px;
    border: 1.5px solid #E2E8F0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: all 0.25s;
    background: #F8FAFC;
}
.faq-item.open .faq-icon { border-color: #2563EB; background: rgba(37,99,235,0.07); }

.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute;
    transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
    border-radius: 1px;
}
.faq-icon::before { width: 9px; height: 1.5px; background: #94A3B8; }
.faq-icon::after  { width: 1.5px; height: 9px; background: #94A3B8; }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #2563EB; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 18px 22px 22px 54px;
    font-size: 14px;
    color: #334155;
    line-height: 1.9;
    border-top: 1px solid #F1F5F9;
}
.faq-answer-inner strong { color: #0F172A; font-weight: 600; }
.faq-hl { color: #2563EB; font-weight: 500; }

.faq-ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; padding: 0; }
.faq-ul li { display: flex; gap: 8px; align-items: flex-start; }
.faq-ul li::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px; min-width: 6px;
    border-radius: 50%;
    background: #2563EB;
    margin-top: 8px;
}

/* HERO REPORT MOBILE FIX */

@media (max-width:900px){

.hero{
padding-bottom:60px;
}

.hero-layout{
flex-direction:column;
align-items:center;
text-align:center;
}

.hero-right{
margin-top:40px;
display:flex;
justify-content:center;
width:100%;
}

.report-stack{
width:260px;
height:380px;
position:relative;
transform:translateX(-20px);
}

.report-cover{
width:100%;
height:100%;
padding:24px;
}

.report-page-back{
width:100%;
height:100%;
}

}

.report-stack{
position:relative;
width:380px;
height:540px;
transform:translateX(40px);
}

.report-page-back:nth-child(1){
transform:rotate(3deg) translate(12px,14px);
}

.report-page-back:nth-child(2){
transform:rotate(1.5deg) translate(6px,7px);
}

.report-cover{
transform:rotate(-2deg);
box-shadow:
0 50px 90px rgba(0,0,0,0.18),
0 20px 30px rgba(0,0,0,0.12);
}
.report-page-back{
top:20px;
left:20px;
}

.report-page-back:nth-child(1){
transform:rotate(3deg) translate(20px,20px);
z-index:0;
}

.report-page-back:nth-child(2){
transform:rotate(1.5deg) translate(10px,10px);
z-index:1;
}

.report-cover{
z-index:2;
}

/* LATEST 3D REPORT STYLE */
.report-stack{
perspective:1200px;
}

.report-cover{
transform:rotate(-3deg) rotateY(-6deg);
transform-origin:left center;
z-index:2;
}

.report-pages{
font-weight:600;
color:#2563EB;
margin:6px 0;
font-size:14px;
}

/* report page thickness effect */

