:root {
    --gcx-bg: #f6fbff;
    --gcx-surface: #ffffff;
    --gcx-surface-soft: #edf5ff;
    --gcx-text: #12314c;
    --gcx-muted: #607488;
    --gcx-primary: #0f7c82;
    --gcx-primary-dark: #0a5f64;
    --gcx-accent: #f39a37;
    --gcx-border: #d7e4f0;
    --gcx-shadow: 0 16px 38px rgba(18, 49, 76, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    color: var(--gcx-text);
    background: radial-gradient(circle at 10% 10%, #f9fcff 0, #f3f8fd 40%, #edf4fb 100%);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.gcx-main {
    min-height: calc(100vh - 90px);
}

.gcx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--gcx-border);
}

.gcx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 76px;
}

.gcx-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.gcx-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.gcx-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
}

.gcx-nav a {
    color: var(--gcx-muted);
    transition: color 0.2s ease;
}

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

.gcx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 11px 22px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.gcx-btn-primary {
    background: linear-gradient(120deg, var(--gcx-accent), #f7b248);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(243, 154, 55, 0.35);
}

.gcx-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(243, 154, 55, 0.42);
}

.gcx-btn-outline {
    border-color: var(--gcx-border);
    color: var(--gcx-primary);
    background: #ffffff;
}

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

.gcx-menu-toggle {
    display: none;
    border: 1px solid var(--gcx-border);
    background: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--gcx-primary);
}

.gcx-hero {
    padding: 72px 0 56px;
}

.gcx-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.gcx-hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.gcx-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--gcx-primary);
    background: #e7f6f7;
    border-radius: 999px;
    padding: 6px 12px;
}

.gcx-lead {
    margin: 0;
    max-width: 660px;
    color: var(--gcx-muted);
    font-size: 18px;
}

.gcx-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.gcx-badges {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gcx-badges li {
    background: #ffffff;
    border: 1px solid var(--gcx-border);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    color: #35526b;
}

.gcx-hero-media {
    position: relative;
}

.gcx-hero-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--gcx-shadow);
    border: 1px solid var(--gcx-border);
    background: linear-gradient(130deg, #ffffff, #eff7ff);
    padding: 20px;
}

.gcx-hero-float {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(15, 124, 130, 0.92);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
}

.gcx-hero-float strong {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.gcx-hero-float span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.gcx-stats {
    padding: 14px 0 10px;
}

.gcx-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gcx-stat-grid article {
    background: var(--gcx-surface);
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
}

.gcx-stat-grid h3 {
    margin: 0;
    font-size: 34px;
    color: var(--gcx-primary);
}

.gcx-stat-grid p {
    margin: 5px 0 0;
    color: var(--gcx-muted);
    font-size: 14px;
}

.gcx-section {
    padding: 64px 0;
}

.gcx-soft {
    background: linear-gradient(180deg, rgba(227, 239, 252, 0.55), rgba(246, 250, 255, 0.6));
}

.gcx-section-head {
    margin-bottom: 28px;
}

.gcx-section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.gcx-flex-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.gcx-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gcx-feature-grid article {
    background: var(--gcx-surface);
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(18, 49, 76, 0.04);
}

.gcx-feature-grid h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.gcx-feature-grid p {
    margin: 0;
    color: var(--gcx-muted);
}

.gcx-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gcx-process-grid article {
    background: #ffffff;
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    padding: 24px 20px;
}

.gcx-process-grid span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gcx-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.gcx-process-grid h3 {
    margin: 14px 0 10px;
    font-size: 20px;
}

.gcx-process-grid p {
    margin: 0;
    color: var(--gcx-muted);
}

.gcx-card-type-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.gcx-card-type-wrap > div > p:last-child {
    color: var(--gcx-muted);
    margin: 14px 0 0;
}

.gcx-card-types {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gcx-card-types li {
    border: 1px solid var(--gcx-border);
    border-radius: 10px;
    background: #ffffff;
    padding: 10px 12px;
    font-weight: 600;
    color: #32526c;
}

.gcx-trust-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.gcx-trust-media img {
    border-radius: 18px;
    border: 1px solid var(--gcx-border);
    box-shadow: var(--gcx-shadow);
}

.gcx-trust-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--gcx-muted);
}

.gcx-trust-list li {
    margin-bottom: 10px;
}

.gcx-faq-grid {
    display: grid;
    gap: 12px;
}

.gcx-faq-grid details {
    border: 1px solid var(--gcx-border);
    border-radius: 14px;
    background: #ffffff;
    padding: 14px 18px;
}

.gcx-faq-grid summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.gcx-faq-grid summary::-webkit-details-marker {
    display: none;
}

.gcx-faq-grid p {
    margin: 8px 0 0;
    color: var(--gcx-muted);
}

.gcx-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gcx-news-grid article {
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.gcx-news-thumb {
    display: block;
    height: 180px;
    overflow: hidden;
}

.gcx-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gcx-news-body {
    padding: 16px;
}

.gcx-news-body p {
    margin: 0;
    color: var(--gcx-muted);
    font-size: 13px;
}

.gcx-news-body h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.35;
}

.gcx-page-hero {
    padding: 68px 0 52px;
    background: linear-gradient(135deg, #0f7c82 0%, #16819f 45%, #2d8ba6 100%);
    color: #ffffff;
}

.gcx-page-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
}

.gcx-page-hero p {
    margin: 12px 0 0;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.88);
}

.gcx-page-hero .gcx-eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.gcx-layout-two {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 20px;
}

.gcx-list-grid {
    display: grid;
    gap: 16px;
}

.gcx-list-card {
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
}

.gcx-list-thumb {
    height: 100%;
}

.gcx-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gcx-list-body {
    padding: 18px;
}

.gcx-list-meta {
    margin: 0;
    color: var(--gcx-muted);
    font-size: 13px;
}

.gcx-list-body h2 {
    margin: 9px 0;
    font-size: 25px;
    line-height: 1.25;
}

.gcx-list-body p {
    margin: 0;
    color: var(--gcx-muted);
}

.gcx-read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--gcx-primary);
    font-weight: 700;
}

.gcx-pagination {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.gcx-pagination a,
.gcx-pagination span {
    border: 1px solid var(--gcx-border);
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 12px;
    color: #496075;
    font-size: 14px;
}

.gcx-empty {
    border: 1px dashed var(--gcx-border);
    border-radius: 12px;
    background: #ffffff;
    padding: 18px;
    color: var(--gcx-muted);
}

.gcx-sidebar {
    display: grid;
    gap: 14px;
    align-content: start;
}

.gcx-side-card {
    background: #ffffff;
    border: 1px solid var(--gcx-border);
    border-radius: 14px;
    padding: 16px;
}

.gcx-side-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.gcx-side-card ul,
.gcx-side-card ol {
    margin: 0;
    padding-left: 18px;
    color: var(--gcx-muted);
}

.gcx-side-card li {
    margin-bottom: 8px;
}

.gcx-side-news {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gcx-side-news li {
    margin: 0;
    padding: 0 0 12px;
    border-bottom: 1px dashed var(--gcx-border);
}

.gcx-side-news li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.gcx-side-news a {
    display: block;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #1e4765;
    font-weight: 700;
}

.gcx-side-news span {
    color: var(--gcx-muted);
    font-size: 12px;
}

.gcx-page-hero-article h1 {
    margin-bottom: 10px;
}

.gcx-article-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.gcx-article {
    background: #ffffff;
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    padding: 20px;
}

.gcx-article-thumb img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--gcx-border);
}

.gcx-article-content {
    padding: 16px 0 10px;
    color: #2f465c;
}

.gcx-article-content h1,
.gcx-article-content h2,
.gcx-article-content h3,
.gcx-article-content h4 {
    color: #143a56;
    margin-top: 1.1em;
}

.gcx-article-content p,
.gcx-article-content li {
    font-size: 17px;
}

.gcx-article-content img {
    max-width: 100%;
    border-radius: 12px;
}

.gcx-article-box {
    margin-top: 14px;
    border: 1px solid var(--gcx-border);
    border-radius: 14px;
    background: var(--gcx-surface-soft);
    padding: 16px;
}

.gcx-article-box h3 {
    margin: 0 0 10px;
}

.gcx-article-box ul {
    margin: 0;
    padding-left: 18px;
    color: var(--gcx-muted);
}

.gcx-article-nav {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gcx-article-nav a {
    border: 1px solid var(--gcx-border);
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
}

.gcx-article-nav span {
    display: block;
    color: var(--gcx-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcx-article-nav strong {
    display: block;
    margin-top: 5px;
    color: #244c69;
    line-height: 1.45;
}

.gcx-footer {
    margin-top: 36px;
    border-top: 1px solid var(--gcx-border);
    background: #ffffff;
    padding: 38px 0 26px;
}

.gcx-footer-cta {
    border: 1px solid var(--gcx-border);
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(120deg, #f7fcff, #eef8ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gcx-footer-eyebrow {
    margin: 0;
    color: var(--gcx-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gcx-footer-cta h3 {
    margin: 5px 0 0;
    font-size: 28px;
    line-height: 1.2;
}

.gcx-footer-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.gcx-footer-grid h4 {
    margin: 0 0 10px;
    font-size: 19px;
}

.gcx-footer-grid p,
.gcx-footer-grid li {
    color: var(--gcx-muted);
}

.gcx-footer-grid ul {
    margin: 0;
    padding-left: 18px;
}

.gcx-copyright {
    margin-top: 14px;
    border-top: 1px solid var(--gcx-border);
    padding-top: 12px;
    font-size: 13px;
    color: var(--gcx-muted);
}

@media (max-width: 1100px) {
    .gcx-nav {
        gap: 14px;
    }

    .gcx-feature-grid,
    .gcx-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gcx-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .gcx-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .gcx-nav {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: 74px;
        background: #ffffff;
        border: 1px solid var(--gcx-border);
        border-radius: 12px;
        box-shadow: var(--gcx-shadow);
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

    .gcx-nav.open {
        display: flex;
    }

    .gcx-header-inner {
        position: relative;
    }

    .gcx-trade-btn {
        display: none;
    }

    .gcx-hero-grid,
    .gcx-card-type-wrap,
    .gcx-trust-wrap,
    .gcx-layout-two,
    .gcx-footer-grid,
    .gcx-list-card {
        grid-template-columns: 1fr;
    }

    .gcx-list-thumb {
        max-height: 260px;
    }

    .gcx-stat-grid,
    .gcx-feature-grid,
    .gcx-process-grid,
    .gcx-news-grid {
        grid-template-columns: 1fr;
    }

    .gcx-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .gcx-footer-cta h3 {
        font-size: 24px;
    }

    .gcx-article-nav {
        grid-template-columns: 1fr;
    }
}

/* Home V2 */
.homev2 {
    position: relative;
}

.homev2-hero {
    padding: 56px 0 64px;
    background:
        radial-gradient(900px 420px at 78% 8%, rgba(255, 191, 95, 0.26), transparent 62%),
        radial-gradient(820px 380px at 8% 85%, rgba(80, 220, 210, 0.2), transparent 60%),
        linear-gradient(145deg, #072d4d 0%, #0d5b73 44%, #127a82 100%);
    color: #f4fbff;
}

.homev2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.homev2-tag {
    display: inline-block;
    margin: 0;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.homev2-hero-main h1 {
    margin: 14px 0 12px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.homev2-sub {
    margin: 0;
    max-width: 660px;
    color: rgba(233, 245, 255, 0.92);
    font-size: 18px;
}

.homev2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.homev2-actions .gcx-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
    color: #ffffff;
}

.homev2-actions .gcx-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.homev2-kpi-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.homev2-kpi-grid article {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.1);
}

.homev2-kpi-grid strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
}

.homev2-kpi-grid span {
    display: block;
    margin-top: 6px;
    color: rgba(235, 245, 255, 0.9);
    font-size: 12px;
}

.homev2-hero-side {
    display: grid;
    gap: 12px;
}

.homev2-hero-card {
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 44px rgba(2, 18, 32, 0.28);
}

.homev2-hero-card img {
    width: 100%;
    border-radius: 12px;
    min-height: 240px;
    object-fit: cover;
    background: #ffffff;
}

.homev2-badge-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.homev2-badge-row span {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0c4d57;
    background: #d3fff8;
}

.homev2-rate-board {
    border-radius: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #d3e4f3;
    color: #17384e;
}

.homev2-rate-board h3 {
    margin: 0;
    font-size: 18px;
}

.homev2-rate-board ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.homev2-rate-board li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed #d7e7f5;
    font-size: 14px;
}

.homev2-rate-board li:last-child {
    border-bottom: 0;
}

.homev2-rate-board b {
    color: #0f7c82;
}

.homev2-signal {
    position: relative;
    margin-top: -24px;
}

.homev2-signal-inner {
    border-radius: 14px;
    padding: 14px 18px;
    background: linear-gradient(120deg, #fef5e7, #e7fbff);
    border: 1px solid #d9e8f4;
    box-shadow: 0 8px 20px rgba(10, 49, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.homev2-signal-inner p {
    margin: 0;
    color: #2c4a62;
    font-weight: 600;
    font-size: 14px;
}

.homev2-signal-inner a {
    white-space: nowrap;
    color: #0f7c82;
    font-weight: 700;
}

.homev2-section {
    padding: 64px 0;
}

.homev2-head {
    margin-bottom: 20px;
}

.homev2-head p {
    margin: 0;
    color: #0f7c82;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 12px;
    font-weight: 700;
}

.homev2-head h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.14;
    color: #122f49;
}

.homev2-head-tight h2 {
    font-size: clamp(26px, 3.4vw, 34px);
}

.homev2-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.homev2-bento article {
    border-radius: 14px;
    border: 1px solid #d9e7f3;
    padding: 20px;
    background: #ffffff;
    min-height: 170px;
}

.homev2-bento article:nth-child(1),
.homev2-bento article:nth-child(4) {
    background: linear-gradient(145deg, #ffffff, #f4fbff);
}

.homev2-bento article:nth-child(2),
.homev2-bento article:nth-child(5) {
    background: linear-gradient(145deg, #fbfff9, #f0fff8);
}

.homev2-bento article:nth-child(3),
.homev2-bento article:nth-child(6) {
    background: linear-gradient(145deg, #fffdfa, #fff6ea);
}

.homev2-bento h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.homev2-bento p {
    margin: 0;
    color: #5f7588;
}

.homev2-flow {
    background: linear-gradient(180deg, #eff8ff 0%, #f7fbff 100%);
    border-top: 1px solid #dfebf6;
    border-bottom: 1px solid #dfebf6;
}

.homev2-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.homev2-timeline li {
    position: relative;
    border: 1px solid #d8e7f4;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
}

.homev2-timeline li::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -10px;
    width: 18px;
    height: 2px;
    background: #89bcc5;
}

.homev2-timeline li:last-child::after {
    display: none;
}

.homev2-timeline span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f7c82;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.homev2-timeline h3 {
    margin: 12px 0 8px;
    font-size: 20px;
}

.homev2-timeline p {
    margin: 0;
    color: #5f7588;
}

.homev2-card-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
}

.homev2-card-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.homev2-card-pills li {
    border: 1px solid #d5e6f3;
    border-radius: 999px;
    padding: 8px 13px;
    background: #ffffff;
    color: #31526a;
    font-weight: 700;
    font-size: 13px;
}

.homev2-check-card {
    border: 1px solid #d6e6f2;
    border-radius: 14px;
    background: #ffffff;
    padding: 14px;
}

.homev2-check-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    max-height: 220px;
    object-fit: cover;
}

.homev2-check-card h3 {
    margin: 0;
    font-size: 22px;
}

.homev2-check-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #607489;
}

.homev2-check-card li {
    margin-bottom: 7px;
}

.homev2-faq-zone {
    background: linear-gradient(180deg, #fffdfa 0%, #f8fbff 100%);
    border-top: 1px solid #e8eef4;
    border-bottom: 1px solid #e8eef4;
}

.homev2-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
}

.homev2-trust-block {
    border: 1px solid #d9e6f3;
    border-radius: 14px;
    background: #ffffff;
    padding: 14px;
    display: grid;
    gap: 14px;
}

.homev2-trust-block img {
    width: 100%;
    border-radius: 10px;
    max-height: 260px;
    object-fit: cover;
}

.homev2-trust-block ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #607489;
}

.homev2-trust-block li {
    margin-bottom: 8px;
}

.homev2-news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.homev2-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.homev2-news-grid article {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d8e7f3;
    background: #ffffff;
}

.homev2-news-grid article:first-child {
    grid-column: span 2;
}

.homev2-news-thumb {
    display: block;
    height: 185px;
}

.homev2-news-grid article:first-child .homev2-news-thumb {
    height: 240px;
}

.homev2-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homev2-news-body {
    padding: 14px;
}

.homev2-news-body p {
    margin: 0;
    color: #6c7f91;
    font-size: 12px;
}

.homev2-news-body h3 {
    margin: 7px 0;
    font-size: 19px;
    line-height: 1.35;
    color: #1a425e;
}

.homev2-news-body > p:last-child {
    font-size: 14px;
    color: #607489;
}

@media (max-width: 1200px) {
    .homev2-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-news-grid article:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .homev2-hero-grid,
    .homev2-card-wrap,
    .homev2-faq-grid {
        grid-template-columns: 1fr;
    }

    .homev2-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homev2-timeline li:nth-child(2)::after,
    .homev2-timeline li:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .homev2-hero {
        padding: 42px 0 54px;
    }

    .homev2-hero-main h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .homev2-kpi-grid,
    .homev2-bento,
    .homev2-timeline,
    .homev2-news-grid {
        grid-template-columns: 1fr;
    }

    .homev2-news-grid article:first-child {
        grid-column: span 1;
    }

    .homev2-news-grid article:first-child .homev2-news-thumb,
    .homev2-news-thumb {
        height: 185px;
    }

    .homev2-signal-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .homev2-timeline li::after {
        display: none;
    }
}
