@charset "utf-8";

/* ==========================================================================
   下層ページ用追加CSS (base_under.css)
   ========================================================================== */

:root {
    /* プレミアムカラーパレット / CSS Design Awards Quality */
    --sr-blue: #0088ff;
    --sr-blue-dark: #001a3d;
    --sr-cyan: #00f2fe;
    --sr-magenta: #f6448f;
    --sr-text: #0a1118;
    --sr-text-light: #4a5568;
    --sr-bg-light: #f8fafc;
    --sr-glass-bg: rgba(255, 255, 255, 0.7);
    --sr-glass-border: rgba(255, 255, 255, 0.3);
    --sr-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;

    /* 放射状グラデーション (Mesh Gradient) の定義 */
    --mesh-grad:
        radial-gradient(at 0% 0%, hsla(205, 100%, 90%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(210, 100%, 95%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 90%, 1) 0, transparent 50%);

    /* デザインパーツ用配色 */
    --theme-gradient-button: #F6448F;
    --theme-gradient-button-2x: #F6448F;
    --theme-gradient-text: #00A0E9;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    background-image: none;
    color: var(--sr-text);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* グローバル段落スタイル - 本文の統一 */
p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sr-text-light);
}

/* スクロールアニメーション用ベースクラス */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 案5の構造を維持しつつ、共通デザインを適用 */

/* メインビジュアルセクション */
.hero {
    padding: 60px 0px 0px 0px;
    text-align: center;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    justify-content: center;
}

/* ページヘッダー */
header.page-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

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

.header-logo img {
    width: 220px;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

/* パンくずリスト */
nav.breadcrumb-nav {
    max-width: 1200px;
    margin: 95px auto 0;
    padding: 0 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    color: #666;
    padding: 0;
    margin: 0;
}

.breadcrumb-list a {
    text-decoration: none;
    color: #666;
}

/* ヘッダーボタンスタイル */
.header-btn {
    background: var(--theme-gradient-button) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 10px 20px rgba(246, 68, 143, 0.2) !important;
    transition: 0.3s !important;
    display: inline-block;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(246, 68, 143, 0.4) !important;
}

.hero-title-seo {
    display: inline-block;
    background: #00A0E9;
    /* SEOタイトルは青色を維持 */
    color: #fff;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 160, 233, 0.2);
    letter-spacing: 0.05em;
    border: none;
}

.hero-catchphrase {
    font-size: 3.5rem;
    /* フォントサイズ 3.5rem（56px相当）*/
    line-height: 1.25;
    margin-bottom: 40px;
    margin-top: 0;
    /* h1デフォルトマージン対策 */
    color: #1a1a1a;
    font-weight: 500;
    /* フォントウェイト 500 */
    letter-spacing: -0.01em;
    perspective: 1000px;
}

.hero-catchphrase .highlight {
    background: var(--theme-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-eyebrow {
    display: block;
    font-size: 1.5rem;
    color: var(--sr-blue-dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
}

@media (max-width: 768px) {
    .hero-catchphrase {
        font-size: 2.2rem;
        line-height: 1.35;
    }

    .hero-eyebrow {
        font-size: 1rem;
        margin-bottom: 12px;
        letter-spacing: 0.02em;
    }
}



.hero-lead {
    font-size: 1.4rem;
    color: var(--sr-text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-weight: 500;
}

.hero-img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 共通セクションスタイル */
section {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.under-tit {
    font-size: 2.75rem;
    /* ユーザー指定の2.75remに調整 */
    color: #1a1a1a;
    border-left: none;
    padding-left: 0;
    margin: 0 auto 15px;
    font-weight: 500;
    /* フォントウェイト 500 */
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.under-tit::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--sr-blue), var(--sr-cyan));
    margin: 20px auto 0;
    border-radius: 3px;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

/* 課題提起カードスタイル */
.problem-card {
    background: var(--sr-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--sr-glass-border);
    padding: 60px;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: var(--sr-shadow);
}

.problem-statement {
    font-size: 2rem;
    font-weight: 400;
    color: var(--sr-blue-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* h4用 Benefit タイトル */
.benefit-title {
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--sr-blue-dark);
    margin-bottom: 15px;
}

/* メリットグリッドレイアウト */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 15px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--sr-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--sr-blue);
    box-shadow: 0 40px 80px -20px rgba(0, 136, 255, 0.2);
}

.benefit-icon {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-icon img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.03) translateY(-5px);
}



/* 比較テーブルスタイル */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 15px 0 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: left;
}

.comparison-table th {
    background-color: #f0f8ff;
    color: var(--sr-blue-dark);
}

.comparison-table .highlight-cell {
    background-color: #e0f3fc;
    font-weight: 700;
}

/* 導入事例セクション */
.case-study-item {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin: 60px 0px 0 0;
}

.case-study-img-box {
    flex: 1;
    position: relative;
}

.case-study-img-box img {
    border-radius: 30px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-study-item:hover .case-study-img-box img {
    transform: scale(1.05);
}

.case-study-content-box {
    flex: 1.2;
}

/* お問い合わせボタン（CTA）セクション */
.cta-outer {
    background: linear-gradient(135deg, var(--sr-blue-dark), #003366);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-outer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 136, 255, 0.1) 0%, transparent 70%);
}

.cta-btn {
    display: inline-block;
    background: #F6448F;
    color: #fff;
    padding: 24px 80px;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1.6rem;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(246, 68, 143, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(246, 68, 143, 0.6);
}

/* ヒーロー画像 */
.hero-img {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto;
    border-radius: 20px;
}

/* 比較画像セクション */
.comparison-img-wrapper {
    text-align: center;
    margin-top: 60px;
}

.comparison-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--sr-shadow);
}

/* ソリューション画像セクション */
.solution-img-wrapper {
    text-align: center;
}

.solution-img {
    animation: none;
    margin: 30px auto 0 !important;
    /* Top 30px, sides auto, bottom 0 */
}

/* レスポンシブデザイン */


@media (max-width: 992px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-catchphrase {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {


    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .case-study-item {
        flex-direction: column;
        gap: 30px;
    }

    .hero-catchphrase {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .under-tit {
        font-size: 1.8rem;
        line-height: 1.35;
    }

    .problem-card {
        padding: 30px 20px;
    }

    .problem-statement {
        font-size: 1.4rem;
    }

    h3,
    .section-subtitle {
        font-size: 1.3rem;
    }

    .cta-outer {
        padding: 60px 20px;
    }

    .cta-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .faq-list summary {
        font-size: 1rem;
        padding: 15px 35px 15px 0;
    }
}

/* スマホ専用（390px以下）- PCに影響しない */
@media (max-width: 600px) {

    /* 基本フォントサイズ */
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    section {
        padding: 40px 12px;
    }

    /* ヒーローセクション */
    .hero {
        padding: 70px 12px 0;
        min-height: auto;
    }

    .hero-catchphrase {
        font-size: 2.45rem !important;
        /* H1: 2.45rem (30% reduced from 3.5rem) */
        line-height: 1.35;
        margin-bottom: 20px;
    }


    .hero-eyebrow {
        font-size: 1rem;
        margin-bottom: 8px;
        letter-spacing: 0;
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-title-seo {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 20px;
    }

    .hero-img {
        margin: 30px auto !important;
        border-radius: 12px !important;
    }

    /* セクション見出し (H2) */
    .under-tit {
        font-size: 1.93rem !important;
        /* H2: 1.93rem (30% reduced from 2.75rem) */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .under-tit::after {
        width: 40px;
        height: 3px;
        margin-top: 12px;
    }

    /* 課題カード */
    .problem-card {
        padding: 20px 12px;
        border-radius: 12px;
        margin-bottom: 25px;
    }

    .problem-statement {
        font-size: 1.4rem !important;
        /* H3: 1.4rem (30% reduced from 2rem) */
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .problem-card p,
    .problem-card li {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* solution-title (H2 equivalent) */
    .solution-title {
        font-size: 1.93rem !important;
        /* H2: 1.93rem (30% reduced from 2.75rem) */
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .solution-inner {
        padding: 20px !important;
    }

    .solution-footer {
        font-size: 1.4rem !important;
        /* H3-like: 1.4rem (30% reduced from 2rem) */
        line-height: 1.4;
        margin-top: 20px;
    }

    /* h3見出し (H3) */
    h3,
    .section-subtitle {
        font-size: 1.4rem !important;
        /* H3: 1.4rem (30% reduced from 2rem) */
        line-height: 1.4;
    }

    /* メリットカード */
    .benefit-grid {
        gap: 20px;
        margin-top: 25px;
    }

    .benefit-item {
        padding: 10px;
        border-radius: 12px;
    }

    .benefit-item p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .benefit-title {
        font-size: 1.3rem !important;
        /* H4: Smallest */
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .benefit-icon {
        margin-bottom: 15px;
        border-radius: 10px;
    }

    /* 比較表 */
    .comparison-table-wrapper {
        margin: 10px 0 25px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 0.7rem;
    }

    /* 導入事例 */
    .case-study-item {
        gap: 20px;
        margin-top: 30px;
    }

    .case-study-img-box img {
        border-radius: 12px;
    }

    .case-study-content-box p {
        font-size: 1rem;
    }

    /* CTAセクション */
    .cta-outer {
        padding: 40px 12px;
    }

    .cta-title {
        font-size: 2.75rem !important;
        /* H2 equivalent: 2.75rem */
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .cta-btn {
        display: block;
        width: auto;
        max-width: 280px;
        margin: 20px auto 0;
        padding: 14px 24px;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    /* FAQ */
    #faq {
        padding: 40px 12px;
    }

    .faq-list summary {
        font-size: 1rem;
        padding: 10px 28px 10px 0;
        line-height: 1.5;
    }

    .faq-list summary::after {
        font-size: 1.2rem;
        right: 5px;
    }

    .faq-content {
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 0 0 15px 0;
    }

    /* ヘッダー */
    .header-container {
        padding: 15px 12px !important;
    }

    .header-container .logo img {
        width: 140px !important;
    }

    .header-btn {
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
    }

    /* パンくずリスト */
    .breadcrumb-nav {
        font-size: 0.7rem !important;
        margin-top: 60px !important;
    }

    nav ol {
        gap: 5px !important;
    }

    /* 一般的な本文テキスト */
    p {
        font-size: 1rem !important;
        /* p: 1rem */
        line-height: 1.6;
    }

    li {
        font-size: 0.85rem;
    }
}


/* FAQセクション */
#faq {
    background-color: #fff;
    padding: 80px 20px;
}

.faq-list {
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list details {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.faq-list summary {
    list-style: none;
    /* デフォルトの矢印アイコンを削除 */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 20px 40px 20px 0;
    position: relative;
    display: block;
    /* 矢印アイコンの位置設定用 */
    transition: color 0.3s ease;
}

.faq-list summary:hover {
    color: var(--sr-blue);
}

/* カスタム「+」アイコン（擬似要素を使用） */
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--sr-blue);
    font-weight: 400;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Safari向けデフォルトマーカー削除 */
.faq-list summary::-webkit-details-marker {
    display: none;
}

/* FAQ展開時のスタイル */
.faq-list details[open] {
    padding-bottom: 20px;
}

.faq-list details[open] summary {
    color: var(--sr-blue-dark);
}

.faq-list details[open] summary::after {
    content: '+';
    transform: translateY(-50%) rotate(45deg);
    color: var(--sr-accent);
}

.faq-content {
    padding: 0 0 20px 0;
    color: var(--sr-text-light);
    line-height: 1.8;
    font-size: 1rem;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SEO・保守性向上のための追加クラス
   ========================================================================== */

/* セクション内サブ見出し（h4）の統一スタイル */
.section-subtitle {
    font-size: 2rem;
    color: var(--sr-blue-dark);
    font-weight: 400;
    margin-top: 40px;
    /* 上の余白を統一 */
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle--center {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: var(--sr-text-light);
}

/* 課題提起リスト */
.problem-list {
    margin: 30px 0;
    padding-left: 20px;
    color: var(--sr-text-light);
    font-size: 1rem;
    line-height: 2;
    list-style: none;
}

.problem-list li {
    margin-bottom: 5px;
}

/* 強調テキスト */
.text-emphasis {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ソリューションセクション */
.solution-section {
    max-width: 100%;
    padding: 0;
}

.solution-box {
    background: linear-gradient(135deg, #001a3d, #004499);
    padding: 60px 20px;
    border: none;
    border-radius: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 40px 40px;
}

.solution-label {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffee80;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-align: center;
    position: relative;
    font-family: 'Quicksand', sans-serif;
}

.solution-title {
    color: #fff;
    border: none;
    padding: 0;
    font-size: 2.75rem;
    margin-bottom: 50px;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.solution-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.solution-inner ul li {
    font-size: 1rem;
}

.solution-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.solution-text:last-of-type {
    margin-bottom: 0;
}

.solution-highlight {
    color: var(--sr-cyan);
}

.solution-footer {
    font-size: 2rem;
    font-weight: 400;
    color: #ffee80;
    text-align: center;
    position: relative;
    margin-top: 30px;
}

/* メリットテキスト */
.benefit-text {
    font-size: 1rem;
    color: var(--sr-text-light);
    line-height: 1.7;
    margin: 0;
}

/* 導入事例 */
.case-study-title {
    font-size: 2rem;
    color: var(--sr-blue-dark);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0;
}



/* セキュリティバッジ */
.security-box {
    text-align: center;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: var(--sr-shadow);
    padding: 20px 0;
    border-radius: 40px;
    margin-top: 60px;
}

.security-title {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--sr-blue-dark);
    margin-bottom: 40px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    background: var(--sr-bg-light);
    padding: 15px 35px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    color: var(--sr-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* CTA セクション */


.cta-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
}



/* フッター追加 */
.footer-tagline {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

/* 比較テーブル幅調整 */
.comparison-table th:first-child {
    width: 25%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    width: 37.5%;
}

/* ==========================================================================
   CSS Externalization - Achievement Lists & Utilities
   ========================================================================== */

/* Achievement List Container */
.achievement-list-box {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Achievement List Title (h3) */
.achievement-list-box .section-subtitle {
    margin-top: 0;
    font-size: 1.5rem;
    text-align: left;
}

.achievement-list-box .section-subtitle:not(:first-child) {
    margin-top: 30px;
}

/* Achievement List (ul) */
.achievement-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.achievement-list.mb-30 {
    margin-bottom: 30px;
}

/* Achievement List Item (li) */
.achievement-item {
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
}

/* Achievement Bullet (span) */
.achievement-bullet {
    color: #2086e6;
    margin-right: 5px;
}

/* Image Utilities */
.img-full-width {
    width: 100%;
    height: auto;
}

/* Text Utilities */
.text-center-mt-30 {
    text-align: center;
    margin-top: 30px;
}

.text-blue {
    color: #00A0E9;
}

.text-lg-mt-20 {
    margin-top: 20px;
    font-size: 1.1rem;
}

.text-bold-mt-20 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sr-blue-dark);
    margin-top: 30px;
}

/* Margin Utilities */
.mb-30 {
    margin-bottom: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

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

.text-white {
    color: #fff;
}

/* CTA Text */
.cta-text {
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

/* CTA Note (yellow text under CTA button) */
.cta-note {
    font-size: 1.1rem;
    color: #ffee80;
    text-align: center;
    margin-top: 40px;
}

/* CTA Container */
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-btn-link {
    text-decoration: none;
    color: #fff !important;
}

/* Solution Section Utilities */
.solution-list-bold {
    margin: 20px 0;
    font-weight: bold;
}

.solution-list-white {
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

/* Text Emphasis for highlights in dark backgrounds */
.solution-highlight {
    color: #ffee80;
}

/* End @media (max-width: 600px) */