/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
}

.section-title {
    font-size: 45.5px;
    font-weight: 700;
    color: #000640;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}

.title-second-line {
    white-space: nowrap;
}

/* CTA Button */
.cta-button {
    background: #27B07B;
    color: #fff;
    border: none;
    padding: 16px 22px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 0;
    overflow: visible;
    box-shadow: 0 10px 28px rgba(39, 176, 123, 0.25);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(39, 176, 123, 0.45) 0%, rgba(39, 176, 123, 0.18) 52%, rgba(39, 176, 123, 0) 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 3px solid rgba(39, 176, 123, 0.35);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -2;
    pointer-events: none;
}

.report-details-cta .cta-button {
    width: 100%;
    max-width: 320px;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 18px 45px rgba(39, 176, 123, 0.55), 0 10px 20px rgba(0, 0, 0, 0.16);
}

.cta-button:hover::after {
    opacity: 1;
    transform: scale(1);
}

.cta-button:hover::before {
    opacity: 1;
    transform: scale(1.1);
    animation: cta-pulse 1.2s ease-out forwards;
}

@keyframes cta-pulse {
    0% {
        opacity: 0.75;
        transform: scale(1.1);
    }
    60% {
        opacity: 0.3;
        transform: scale(1.4);
    }
    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.arrow-icon {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #27B07B;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: #1E7B7B;
    padding: 60px 0;
    color: #fff;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.hero .container {
    display: grid;
    place-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-highlight {
    color: #FFA500;
    display: block;
    font-size: 1.1em;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.highlight-text {
    color: #FFA500;
    font-weight: 700;
}

.hero-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-top: 24px;
}

.hero-image {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Business Requirements New Section */
.business-requirements-new {
    padding: 100px 0;
    background: #fff;
}

.requirements-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.requirements-text-new {
    text-align: center;
    margin-bottom: 60px;
}

.requirements-text-new h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000640;
    margin-bottom: 30px;
    line-height: 1.5;
}

.requirements-text-new p {
    font-size: 36px;
    font-weight: 400;
    color: #353535;
    line-height: 1.6;
}

.requirements-subtext {
    font-size: 36px;
    font-weight: 400;
    color: #353535;
    line-height: 1.6;
    text-align: center;
    margin-top: 40px;
    word-break: normal;
    overflow-wrap: break-word;
}

.highlight-green {
    color: #10b981;
}

.highlight-orange {
    color: #ffa500;
}

.requirements-checklist-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.checklist-item-new {
    background: #fff;
    border: 2px solid #0B3D2E;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    position: relative;
    /* header is now in normal flow */
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.check-header {
    background: #0B3D2E;
    color: #fff;
    padding: 12px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* center heading horizontally */
    min-height: 48px; /* unify header band height across cards */
}

.check-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    white-space: nowrap; /* keep to one line to match "技術選定と実装戦略" height */
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center; /* ensure centered text */
}

/* Ensure content has spacing below header */
.check-list {
    padding-top: 10px;
}

.check-icon-new {
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.check-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.check-list ul {
    list-style: none;
    text-align: left;
    padding: 0 20px 20px;
    margin: 0;
}

.check-list li {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.5;
}

.rwa-note-new {
    font-size: 24px;
    font-weight: 300;
    color: #000;
    text-align: right;
    line-height: 1.5;
}

/* Service Features New Section */
.service-features-new {
    padding: 80px 0 40px;
    background: #0B3D2E;
    color: #fff;
}

.features-content-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.features-text-new {
    width: 100%;
}

.features-text-new h2 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
}

.feature-list-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch; /* This will make all items have the same height */
}

.feature-item-new {
    background: linear-gradient(to right, #0B3D2E, #105A44);
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 10px;
}

.feature-item-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.feature-item-new h3 {
    color: #FFA500;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 280px;
}

.feature-item-description {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.description-line {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    padding-left: 0;
}

.description-line .bullet {
    width: 1.5em;
    min-width: 1.5em;
    max-width: 1.5em;
    flex-shrink: 0;
    text-align: left;
    display: inline-block;
    padding-right: 0;
    margin-right: 0;
}

.description-line .text {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-left: 0;
    margin-left: 0;
}

.features-sidebar-new {
    flex: 0 0 533px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.report-samples-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sample-card-new {
    background: #0B3D2E;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.sample-card-new img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sample-card-new h3 {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1.52;
    letter-spacing: -0.045em;
}

.service-details-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-item-new {
    text-align: center;
}

.detail-item-new h3 {
    font-size: 53.1px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.48;
    letter-spacing: 0.0029em;
}

.detail-value-new {
    font-size: 96px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 20px;
    line-height: 0.82;
    letter-spacing: 0.0039em;
}

.detail-item-new p {
    font-size: 30.1px;
    font-weight: 350;
    color: #fff;
    line-height: 1.49;
    letter-spacing: 0.0019em;
}

.features-cta-new {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Service Details Section */
.service-details-section {
    padding: 128px 0;
    background: #0B3D2E;
    color: #fff;
}

.service-details-content {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
}

.detail-item-standalone {
    text-align: center;
    flex: 0 0 500px;
}

.detail-item-standalone h3 {
    font-size: 53.1px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.48;
    letter-spacing: 0.0029em;
}

.detail-value-standalone {
    font-size: 96px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 20px;
    line-height: 0.82;
    letter-spacing: 0.0039em;
}

.detail-item-standalone p {
    font-size: 30.1px;
    font-weight: 350;
    color: #fff;
    line-height: 1.49;
    letter-spacing: 0.0019em;
}

.service-details-cta {
    display: flex;
    justify-content: center;
}

/* Report Samples Section */
.report-samples-section {
    padding: 128px 0;
    background: #0B3D2E;
    color: #fff;
}

.report-samples-content {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.sample-card-standalone {
    background: #0B3D2E;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    flex: 0 0 533px;
}

.sample-card-standalone img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sample-card-standalone h3 {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1.52;
    letter-spacing: -0.045em;
}

/* Report Details Section */
.report-details-section {
    padding: 80px 0;
    background: #0B3D2E;
    color: #fff;
}

.report-details-section .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.report-details-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.sample-detail-pair {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.sample-detail-pair:first-child {
    justify-content: center;
}

.sample-detail-pair:nth-child(2) .details-side {
    align-self: center;
    padding-top: 0;
}

.sample-detail-pair:nth-child(2) {
    justify-content: center;
}

.details-side {
    flex: 1;
    width: 100%;
    max-width: 600px;
}

.samples-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 533px;
}

.report-details-section .detail-item {
    text-align: center;
}

.report-details-section .detail-item h3,
.report-details-section .detail-item .detail-value,
.report-details-section .detail-item p {
    text-align: center;
}

.report-details-section .detail-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

.report-details-section .detail-item .detail-value {
    font-size: 72px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 20px;
    line-height: 1;
    white-space: nowrap;
}

.report-details-section .detail-item p {
    font-size: 18px;
    font-weight: 350;
    color: #fff;
    line-height: 1.6;
    max-width: 100%;
}

.report-details-section .detail-item p.detail-description + p.detail-description {
    margin-top: 0;
}

.report-details-section .sample-card {
    background: #0B3D2E;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.report-details-section .sample-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.report-details-section .sample-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

/* Smaller CTA buttons only inside report samples */
.report-details-section .sample-card .cta-button {
    background: transparent;
    color: #fff;
    border: 2px solid #27B07B;
    padding: 10px 16px;
    border-radius: 6px;
    width: auto;
    max-width: none;
    margin: 0 auto;
}

.report-details-section .sample-card .cta-button:hover {
    background: rgba(39, 176, 123, 0.08);
    transform: none;
}

.report-details-section .sample-card .cta-button .arrow-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 16px;
    color: #fff;
}

.report-details-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.report-details-cta .cta-button {
    text-decoration: none;
}

/* Past Reports Section */
.past-reports {
    padding: 80px 0;
    background: #fff;
}

/* Fix gray line to stay inside cards with rounded corners */
.past-reports .grid a,
.past-reports-list li a {
    overflow: hidden !important;
    position: relative;
}

.past-reports .grid a::before,
.past-reports-list li a::before {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Specific border-radius values for different card sizes */
.past-reports .grid a.rounded-3xl::before,
.past-reports-list li a.rounded-3xl::before {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
}

.past-reports .grid a.rounded-2xl::before,
.past-reports-list li a.rounded-2xl::before {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.past-reports-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.past-reports-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Past Reports footer text + media */
.past-reports-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.past-reports-footer .footer-text p {
    color: #353535;
    line-height: 1.6;
    font-size: 36px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .past-reports-footer .footer-text p {
        font-size: 28px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .past-reports-footer .footer-text p {
        font-size: 22px;
    }
}

/* Market Growth Section */
.market-growth {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.market-growth .container,
.rwa-market .container {
    position: relative;
    z-index: 1;
}

.chart-container {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.main-chart {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.market-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.chart-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 523px;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 15px;
}

.chart-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    line-height: 1.4;
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0;
    line-height: 1.2;
}

.metric-note {
    font-size: 22px;
    font-weight: 350;
    color: #000640;
    line-height: 1.4;
}

.data-source {
    font-size: 22px;
    font-weight: 350;
    color: #000640;
    text-align: center;
    line-height: 1.5;
    margin-top: 15px;
}

.data-source a {
    color: #0066cc;
    text-decoration: underline;
}

.data-source a:hover {
    color: #0052a3;
}

.rwa-market .data-source {
    text-align: center;
}

/* RWA Market Section */
.rwa-market {
    padding: 20px 0 100px;
    background: #fff !important;
}

.rwa-market .section-title {
    color: #000640 !important;
}

.rwa-market .stat-label,
.rwa-market .stat-growth {
    color: #000640 !important;
}

.rwa-market .data-source {
    color: #000640 !important;
    margin-top: 40px;
}

.rwa-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.rwa-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.stat-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.stat-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-growth {
    font-size: 26px;
    font-weight: 350;
    color: #000640;
    line-height: 1.4;
}

.rwa-chart {
    flex: 1;
    text-align: center;
    width: 100%;
}

.rwa-chart img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 993px) {
    .rwa-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .rwa-stats {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .rwa-chart-area {
        flex: 1;
    }

    .trend-cards {
        flex-direction: row;
        max-width: 1200px;
        align-items: stretch;
    }
}

/* Market Trends Section */
.market-trends {
    padding: 100px 0;
    background: #0B3D2E;
}

.market-trends .section-title {
    color: #fff;
}

.market-trends .highlight-orange {
    color: #ffa500;
}

.trends-content {
    margin-bottom: 60px;
}

.trend-cards {
    max-width: 650px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trend-card {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 340px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content-wrapper {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trend-card.blackrock .card-category {
    background: #43ABC5;
}

.trend-card.jpmorgan .card-category {
    background: #55929B;
}

.card-category {
    padding: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.card-content {
    background: #fff;
    color: #000;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #2A4551;
    margin-bottom: 15px;
}

.card-description {
    font-size: 22px;
    font-weight: 350;
    line-height: 1.5;
}

.trend-text {
    max-width: 1115px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trend-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: #43ABC5;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.trend-text p {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
}

.trend-text-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.trends-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    margin: 0;
}

.fixed-cta .cta-button {
    background: linear-gradient(135deg, #27B07B 0%, #1a8f63 100%);
    box-shadow: 0 8px 30px rgba(39, 176, 123, 0.4), 
                0 0 0 4px rgba(255, 255, 255, 0.3),
                0 0 0 8px rgba(39, 176, 123, 0.2);
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    min-height: 130px !important;
    max-height: 130px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    animation: pulse-ring 2s infinite;
    transition: all 0.3s ease;
}

.fixed-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(39, 176, 123, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
}

.fixed-cta .cta-button:hover {
    background: linear-gradient(135deg, #1a8f63 0%, #27B07B 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(39, 176, 123, 0.5), 
                0 0 0 4px rgba(255, 255, 255, 0.4),
                0 0 0 8px rgba(39, 176, 123, 0.3);
}

.fixed-cta .cta-button span {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.fixed-cta .arrow-icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 8px 30px rgba(39, 176, 123, 0.4), 
                    0 0 0 4px rgba(255, 255, 255, 0.3),
                    0 0 0 8px rgba(39, 176, 123, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(39, 176, 123, 0.5), 
                    0 0 0 4px rgba(255, 255, 255, 0.4),
                    0 0 0 12px rgba(39, 176, 123, 0.15);
    }
    100% {
        box-shadow: 0 8px 30px rgba(39, 176, 123, 0.4), 
                    0 0 0 4px rgba(255, 255, 255, 0.3),
                    0 0 0 8px rgba(39, 176, 123, 0.2);
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}
@media (min-width: 993px) {
    .trend-cards {
        flex-direction: row;
        max-width: 1200px;
        align-items: stretch;
    }

    .trend-card {
        flex: 1;
    }

    .trend-text h3 {
        white-space: nowrap;
    }
}

.trends-cta .cta-button {
    width: 100%;
    max-width: 320px;
}

@media (min-width: 993px) {
    .report-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px 100px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .report-logos img,
    .report-logos img:first-child,
    .report-logos img:nth-child(3),
    .report-logos img:nth-child(4) {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Report Achievements Section */
.report-achievements {
    padding: 100px 0;
    background: #fff;
}

.report-achievements .section-title {
    margin-bottom: 30px;
}

.report-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.report-logos img {
    width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 60px;
}

.report-logos img:first-child {
    width: 350px;
    margin-bottom: 10px;
}

.report-logos img:nth-child(3),
.report-logos img:nth-child(4) {
    width: 250px;
}

.report-logos img:last-child {
    margin-bottom: 0;
}

.achievement-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card-item {
    background: #F7F7F7;
    border: 2px solid #0B3D2E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.card-icon .circle {
    width: 100%;
    height: 100%;
}

.card-icon .check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: auto;
}

.achievement-card-item h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    color: #101113;
    margin: 0;
}

.achievement-card-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.6;
    color: #000640;
    margin: 0;
    text-align: left;
}


/* Service Features Section */
.service-features {
    padding: 128px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.service-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background-color: #F0F9FA;
    opacity: 0.6;
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: #f0f9fa;
    padding: 30px;
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-item p {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
}

.features-sidebar {
    flex: 0 0 auto;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.report-samples {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.sample-card {
    background: #0B3D2E;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.sample-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sample-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

.service-details {
    margin-bottom: 40px;
}

.detail-item {
    margin-bottom: 30px;
    text-align: center;
}

.detail-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.detail-value {
    font-size: 88px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 20px;
    line-height: 1;
}

.detail-item p {
    font-size: 26px;
    font-weight: 350;
    color: #000;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* Business Requirements Section */
.business-requirements {
    padding: 128px 0;
    background: #fff;
}

.requirements-content {
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-text {
    text-align: center;
    margin-bottom: 60px;
}

.requirements-text h2 {
    font-size: 40px;
    font-weight: 400;
    color: #000640;
    margin-bottom: 30px;
    line-height: 1.5;
    letter-spacing: 4%;
}

.requirements-text p {
    font-size: 40px;
    font-weight: 400;
    color: #353535;
    line-height: 1.5;
    letter-spacing: 4%;
}

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

.checklist-item {
    background: #fff;
    border: 2px solid #0B3D2E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.check-icon {
    width: 100px;
    height: 100px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    margin: 0 auto 20px;
}

.check-icon.incomplete {
    background: #000;
}

.check-content h3 {
    font-size: 19.6px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.53;
    letter-spacing: -5.07%;
}

.check-content ul {
    list-style: none;
    text-align: left;
}

.check-content li {
    font-size: 19.8px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.51;
    letter-spacing: -0.19%;
}

.rwa-note {
    font-size: 30.3px;
    font-weight: 300;
    color: #000;
    text-align: left;
    line-height: 1.48;
    letter-spacing: 0.39%;
}

/* Company Logos Section */
.company-logos {
    padding: 80px 0;
    background: #fff;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.logos-grid img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Track Record Section */
.track-record {
    padding: 128px 0;
    background: #fff;
}

.track-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.track-card {
    background: #F7F7F7;
    border: 2px solid #0B3D2E;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.card-icon-container {
    margin-bottom: 30px;
}

.card-icon-container img {
    height: 60px;
}

.track-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #101113;
    margin-bottom: 20px;
    line-height: 1.5;
}

.track-card p {
    font-size: 22px;
    font-weight: 700;
    color: #000640;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.faq-item {
    border: 3px solid #0B3D2E;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
}

.q-icon {
    width: 30px;
    height: 30px;
    background: #0B3D2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: #F9F9F9;
}

.a-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #0B3D2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0B3D2E;
    flex-shrink: 0;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

.faq-footer {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-footer h3 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.faq-footer p {
    font-size: 28px;
    font-weight: 350;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-footer .cta-button {
    width: 100%;
    max-width: 320px;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Center the footer logo */
.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-description {
    font-size: 20px;
    font-weight: 350;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 36px;
    height: 36px;
}

.social-link img[src*="YouTube.svg"] {
    background-color: #fff;
    border-radius: 4px;
    padding: 4px;
    width: 48px;
    height: 48px;
    vertical-align: middle;
}

.footer-copyright {
    font-size: 22px;
    font-weight: 350;
    color: #000;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .features-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .features-sidebar {
        flex: none;
        width: 100%;
    }
    
    .requirements-checklist-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .track-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    /* Feature Items - Tablet size adjustment */
    .feature-item-new {
        max-width: 100%;
        padding: 20px;
    }
    
    .feature-item-new h3 {
        width: auto;
        min-width: 200px;
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }
    
    .feature-item-content {
        padding-left: 0 !important;
        margin-left: 0 !important;
        gap: 15px !important;
    }
    
    .feature-item-description {
        margin-left: 0 !important;
        padding-left: 0 !important;
        max-width: 100% !important;
        flex: 1;
        margin-top: 0 !important;
    }
    
    /* Align bullet points consistently */
    .description-line {
        display: flex;
        align-items: flex-start;
        gap: 0;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .description-line .bullet {
        width: 1.2em !important;
        min-width: 1.2em !important;
        max-width: 1.2em !important;
        text-align: left;
        display: inline-block;
        flex-shrink: 0;
        padding-right: 0;
        margin-right: 0;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .description-line .text {
        white-space: normal;
        flex: 1;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .feature-item-description {
        margin-left: 30px;
        max-width: calc(100% - 250px);
        flex: 1;
        padding-left: 0;
    }
    
    .market-stats, .rwa-content {
        flex-direction: column;
        align-items: center;
    }

    .trend-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .trend-card {
        max-width: 450px;
    }

    .achievement-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .sample-detail-pair {
        flex-direction: column;
        gap: 30px;
    }
    
    .report-details-cta {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .past-reports-list .group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: relative;
        padding: 30px 20px;
        overflow: hidden;
    }

    .past-reports-list .group .absolute {
        position: relative;
        inset: auto;
        width: 100%;
        height: 200px;
        margin-top: 20px;
        clip-path: none !important;
    }

    .past-reports-list .group .absolute img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .title-highlight {
        font-size: 1.1em;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .cta-button {
        min-width: 100%;
        font-size: 18px;
        padding: 15px 20px;
    }

    .hero-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-cta .cta-button,
    .report-details-cta .cta-button,
    .trend-text-cta .cta-button,
    .trends-cta .cta-button,
    .faq-footer .cta-button {
        width: 100%;
        max-width: 100%;
        display: flex;
    }

    .fixed-cta {
        bottom: 20px;
        right: 20px;
    }

    .fixed-cta .cta-button {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        min-height: 110px !important;
        max-height: 110px !important;
    }

    .fixed-cta .cta-button span {
        font-size: 14px;
    }

    .fixed-cta .arrow-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .requirements-text-new h2, .requirements-subtext {
        font-size: 28px;
    }

    .rwa-note-new {
        font-size: 20px;
    }

    .features-text-new h2 {
        font-size: 28px;
    }

    .feature-item-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .feature-item-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
        margin-left: 0;
        padding-left: 0;
    }

    .feature-item-new h3 {
        font-size: 18px;
        width: 100%;
        padding-left: 0;
        margin-left: 0;
    }

    .feature-item-description {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .description-line {
        display: flex;
        align-items: baseline;
        gap: 0;
        width: 100%;
    }

    .description-line .bullet {
        width: 1.2em;
        min-width: 1.2em;
        flex-shrink: 0;
        margin-left: 0;
    }

    .description-line .text {
        white-space: normal;
        flex: 1;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .report-details-section .detail-item h3 {
        font-size: 32px;
    }

    .report-details-section .detail-item .detail-value {
        font-size: 60px;
    }

    .report-details-section .detail-item p {
        font-size: 16px;
    }

    .chart-card h3 {
        font-size: 20px;
    }

    .metric-value {
        font-size: 40px;
    }

    .metric-note, .data-source {
        font-size: 18px;
    }

    .stat-label {
        font-size: 24px;
    }

    .stat-value {
        font-size: 40px;
    }

    .stat-growth {
        font-size: 22px;
    }
    
    .trend-text h3 {
        font-size: 28px;
    }
    
    .trend-text p {
        font-size: 22px;
    }
    
    .card-content h4 {
        font-size: 24px;
    }

    .card-subtitle {
        font-size: 16px;
    }
    
    .card-highlight {
        font-size: 24px;
    }
    
    .card-description {
        font-size: 20px;
    }
    
    .achievement-card-item h3 {
        font-size: 26px;
    }

    .achievement-card-item p {
        font-size: 18px;
    }

    .faq-footer h3 {
        font-size: 32px;
    }

    .faq-footer p {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 18px;
    }
    
    .footer-copyright {
        font-size: 20px;
    }

    .requirements-checklist-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .requirements-content-new {
        padding-left: 0;
        padding-right: 0;
    }

    .requirements-checklist-new {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .title-highlight {
        white-space: nowrap;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 16px;
    }

    .fixed-cta {
        bottom: 15px;
        right: 15px;
    }

    .fixed-cta .cta-button {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        max-width: 90px !important;
        min-height: 90px !important;
        max-height: 90px !important;
    }

    .fixed-cta .cta-button span {
        font-size: 12px;
    }

    .fixed-cta .arrow-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .requirements-text-new h2, .requirements-subtext {
        font-size: 22px;
    }

    .check-header h3 {
        font-size: 16px;
    }

    .check-list li {
        font-size: 16px;
    }

    .rwa-note-new {
        font-size: 18px;
    }

    .features-text-new h2 {
        font-size: 24px;
    }

    .feature-item-new h3 {
        font-size: 18px;
    }

    .feature-item-new p {
        font-size: 14px;
    }

    .report-details-section .detail-item h3 {
        font-size: 28px;
    }

    .report-details-section .detail-item .detail-value {
        font-size: 52px;
    }

    .chart-card h3 {
        font-size: 20px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .metric-note, .data-source {
        font-size: 16px;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-growth {
        font-size: 18px;
    }

    .trend-text h3 {
        font-size: 24px;
        padding: 10px 15px;
    }
    
    .trend-text p {
        font-size: 18px;
    }

    .card-category {
        font-size: 20px;
    }

    .card-content h4 {
        font-size: 22px;
    }

    .card-highlight {
        font-size: 22px;
    }

    .card-description {
        font-size: 18px;
    }
    
    .report-logos {
        gap: 20px;
    }

    .report-logos img {
    }

    .achievement-card-item h3 {
        font-size: 22px;
    }

    .achievement-card-item p {
        font-size: 16px;
    }

    .faq-question h3, .faq-answer p {
        font-size: 16px;
    }
    
    .faq-footer h3 {
        font-size: 28px;
    }
    
    .faq-footer p {
        font-size: 20px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 18px;
    }
}

.rwa-market .data-source {
    margin-top: 40px;
}

/* PC Layout Overrides */
@media (min-width: 993px) {
    /* Feature Items - Wider on desktop */
    .feature-item-new {
        max-width: 900px;
        justify-content: flex-end;
        padding-left: 100px;
        padding-right: 25px;
    }
    
    .feature-item-new h3 {
        width: 140px;
        flex-shrink: 0;
        text-align: right;
    }
    
    .feature-item-description {
        margin-left: 150px;
        max-width: calc(100% - 290px);
        flex: 1;
        text-align: left;
    }
    
    /* Report Details Section */
    .report-details-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 40px 60px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .report-samples-column, 
    .report-text-details-column {
        display: contents;
    }

    .report-samples-column .sample-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    .report-text-details-column .detail-item:nth-child(1) {
        grid-column: 2;
        grid-row: 1;
    }
    .report-samples-column .sample-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    .report-text-details-column .detail-item:nth-child(2) {
        grid-column: 2;
        grid-row: 2;
    }

    .report-details-section .sample-card {
        text-align: center;
        width: 100%;
    }
    .report-details-section .sample-card img {
        width: 100%;
        height: auto;
    }

    .report-details-section .detail-item {
        text-align: center;
    }

    /* RWA Market Section */
    .rwa-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .rwa-stats {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .rwa-chart-area {
        flex: 1;
    }

    /* Market Trends Section */
    .trend-cards {
        flex-direction: row;
        max-width: 1200px;
        align-items: stretch;
    }

    .trend-card {
        flex: 1;
    }

    .trend-text h3 {
        white-space: nowrap;
    }
    
    /* Report Achievements Section */
    .report-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px 100px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .report-logos img,
    .report-logos img:first-child,
    .report-logos img:nth-child(3),
    .report-logos img:nth-child(4) {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Additional PC-specific overrides for hero section */
@media (min-width: 1201px) {
    .hero-content {
        gap: 100px;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 993px) and (max-width: 1200px) {
    .report-text-details-column .detail-item {
        padding-top: 30px;
    }

    .achievement-cards-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .achievement-card-item {
        flex-basis: calc(50% - 20px);
    }
}
