* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-container {
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
    cursor: pointer;
}

.logo span {
    color: #00b4d8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #0066cc;
}

.nav-links a.active {
    color: #0066cc;
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(135deg, #0066cc, #00b4d8);
}

.cta-button {
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* ================= FULL WIDTH ================= */
section,
.hero-content,
.platform-hero-content,
.platform-section-content,
.architecture-visual,
.footer-content,
.lead-form-container {
    max-width: 100% !important;
}

section {
    padding: 5rem 4rem;
}

@media (min-width: 1600px) {

    section,
    .nav-container {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

@media (max-width: 768px) {

    section,
    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-links {
        display: none;
    }
}

/* ===== ALL YOUR ORIGINAL STYLES CONTINUE UNCHANGED BELOW ===== */
/* (NO MODIFICATIONS TO YOUR DESIGN RULES) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
}

.logo span {
    color: #00b4d8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 17px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #0066cc;
}

.cta-button {
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.hero {
    /* margin-top: 80px; */
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    padding: 7rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tagline {
    font-size: 1.8rem;
    color: white;
    /* margin-bottom: 3rem; */
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.pillar-number {
    font-size: 2.5rem;
    color: #00b4d8;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* SSO Section */
.sso-section {
    background: white;
    padding: 7.3rem 2rem;
    margin-top: 2rem;
}

.sso-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sso-title {
    text-align: center;
    color: #0066cc;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.sso-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.sso-btn:hover {
    border-color: #0066cc;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sso-btn img {
    width: 24px;
    height: 24px;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #666;
}

section {
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-section-title {
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    padding: 1.5rem 0;
    border-radius: 1rem;
}

.section-title {
    font-size: 1.5rem;
    /*color: #0066cc;*/
    margin-bottom: 1rem;
    text-align: center;
}

.sub-section-title {
    color: #0066cc;
}

.section-subtitle {
    text-align: center;
    /*color: #666;*/
    font-size: 1.1rem;
    /*margin-bottom: 3rem;*/
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #0066cc;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    color: #00b4d8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b4d8;
    font-weight: bold;
}

/* Platform Page Styles */
.platform-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.platform-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strategic-quote {
    font-size: 2rem;
    font-style: italic;
    color: #00b4d8;
    margin: 2rem auto;
    max-width: 900px;
    line-height: 1.5;
    font-weight: 300;
}

.strategic-quote::before,
.strategic-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Architecture Visual */
.architecture-visual {
    background: white;
    padding: 1rem 3rem;
    margin: 0 auto;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.arch-layer {
    /* margin-bottom: 1.5rem; */
    /* display: grid; */
    /* grid-template-columns: 150px 1fr; */
    /* gap: 2rem; */
    /* align-items: center; */
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
}

.arch-layer-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.arch-layer-content {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.arch-box {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.arch-box:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.arch-box-logo {
    color: #00b4d8;
    font-size: 1.2rem;
}

/* Platform Sections */
.platform-section {
    padding: 2.5rem 2rem;
}

.platform-section:nth-child(even) {
    background: #f8f9fa;
}

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

.big-number {
    font-size: 5rem;
    font-weight: bold;
    color: #e9ecef;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
}

.subsection-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border-left: 5px solid #0066cc;
}

.subsection-title {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.subsection-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sub-section-grid-new {
    display: flex;
    justify-content: center;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.flex-card {
    width: 400px;
}

.subsection-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #00b4d8;
}

.subsection-item h4 {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.subsection-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.automation-section {
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
}

.automation-section .section-title {
    color: white;
}

.automation-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.automation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.automation-card h3 {
    color: #00b4d8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #0066cc;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Contact/Lead Gen Page */
.contact-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    padding: 2rem 2rem;
    text-align: center;
}

.lead-form-container {
    margin: auto 0;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.benefits-section {
    padding: 0 2rem;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.contacts-grid {
    display: flex;
    gap: 2rem;
    max-width: 800px;
    margin: 1rem auto;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/* Mobile */
@media (max-width: 640px) {
    .contacts-grid {
        flex-wrap: wrap;
    }
}


.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

footer {
    background: #001f3f;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00b4d8;
    margin-bottom: 1rem;
}

.footer-section>ul {
    list-style: none;
}

.footer-section>ul li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    color: #00b4d8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Page visibility */

.page {
    display: none;
    margin: 0 auto;
}

.page.active {
    display: block;
}

.highlight-box {
    background: linear-gradient(135deg, #0066cc10, #00b4d810);
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

@media (min-width: 1400px) {
    .page {
        max-width: 1320px;
    }
}

@media only screen and (min-width : 1224px) and (max-width:1399px) {
    .page {
        max-width: 1024px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .strategic-quote {
        font-size: 1.3rem;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .arch-layer {
        grid-template-columns: 1fr;
    }

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

/* ===== Blog Section ===== */

.blog-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1800px;
    /* margin: 3rem auto 0; */
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0066cc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    font-weight: 600;
    color: #00b4d8;
}

.blog-title {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title:hover {
    cursor: pointer;
    text-decoration: underline;
}

.blog-excerpt {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    margin-top: auto;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.blog-link:hover {
    color: #003d7a;
}

/* ===== Solution Selection (No Stepper) ===== */

.solution-form-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.solution-block {
    background: #ffffff;
    border: 2px solid #e6eef7;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e6eef7;
    padding-bottom: 1rem;
}

.solution-index {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4d8, #0066cc);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-header h3 {
    font-size: 1.4rem;
    color: #003d7a;
}

.solution-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e6eef7;
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.solution-option:hover {
    border-color: #0066cc;
    background: #f8fbff;
}

.solution-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.solution-option span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.solution-option strong {
    color: #003d7a;
}

/* ===== Scrollable Solution Cards ===== */

.solution-scroll {
    max-height: 420px;
    /* controls visible height */
    overflow-y: auto;
    padding-right: 6px;
    scroll-behavior: smooth;
}

/* Optional: cleaner scrollbar */
.solution-scroll::-webkit-scrollbar {
    width: 6px;
}

.solution-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.solution-scroll::-webkit-scrollbar-thumb {
    background: #d0e2f2;
    border-radius: 6px;
}

.solution-scroll::-webkit-scrollbar-thumb:hover {
    background: #b3d4ef;
}

/* ===== Company / Tenant Inputs ===== */

.org-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.org-inputs .form-group {
    display: flex;
    flex-direction: column;
}

.org-inputs label {
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #333;
}

.org-inputs input {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 2px solid #e6eef7;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.org-inputs input:focus {
    outline: none;
    border-color: #0066cc;
}

/* Mobile stacking */
@media (max-width: 768px) {
    .org-inputs {
        grid-template-columns: 1fr;
    }
}

/* ===== Readonly Tenant Styling ===== */

.org-inputs input[readonly] {
    background: #f8f9fa;
    color: #555;
    cursor: not-allowed;
}

/* ===== Authenticate Button ===== */

.authenticate-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1.1rem;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #0066cc, #00b4d8);
    color: white;
    transition: all 0.3s ease;
}

.authenticate-btn:disabled {
    background: #d6e2f0;
    cursor: not-allowed;
}

.authenticate-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35);
}

.hidden {
    display: none;
}

/* ===== Back Button ===== */

.back-btn {
    background: transparent;
    border: none;
    color: #0066cc;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.back-btn:hover {
    text-decoration: underline;
}

/* ===== Medium-Style Blog ===== */

.medium-blog {
    background: #ffffff;
    padding: 1.5rem;
}

.medium-article {
    /* max-width: 920px;
                margin: 0 auto; */
    font-family: Georgia, 'Times New Roman', serif;
    color: #242424;
}

.medium-breadcrumb a {
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
    color: #0066cc;
    cursor: pointer;
}

.medium-title {
    font-size: 3rem;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
    font-weight: 700;
}

.medium-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: system-ui, sans-serif;
    margin-bottom: 2.5rem;
}

.card-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: system-ui, sans-serif;
    margin-bottom: 2.5rem;
}

.card-profile img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.card-author-name {
    font-weight: 400;
    font-size: 0.8rem;
    color: #6c757d;
}

.medium-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
}

.author-meta {
    font-size: 0.9rem;
    color: #666;
}

.medium-image img {
    width: 100%;
    border-radius: 6px;
}

.medium-image figcaption {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
    text-align: center;
}

.medium-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

.medium-content .lead {
    font-size: 1.4rem;
    font-weight: 500;
}

.medium-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
}

.medium-content blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #444;
}

.medium-content ul,
.medium-content ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.medium-author-bio {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
    padding-top: 2rem;
    font-family: system-ui, sans-serif;
}

.medium-author-bio img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.author-links a {
    color: #0066cc;
    font-weight: 600;
    margin-right: 0.5rem;
}

.gs-stepper-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.gs-stepper-wrapper {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
}

.gs-stepper {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.gs-step {
    text-align: center;
    color: #9aa6b2;
    font-size: .85rem;
}

.gs-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e6ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
}

.gs-step.gs-active span {
    background: linear-gradient(135deg, #00b4d8, #0066cc);
    color: #fff;
}

.gs-line {
    flex: 1;
    height: 2px;
    background: #e0e6ed;
}

.gs-title {
    text-align: center;
    color: #003d7a;
    font-size: 1.8rem;
}

.gs-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.gs-card {
    border: 2px solid #e6eef7;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.gs-card-header {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e6eef7;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.gs-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4d8, #0066cc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-option {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e6eef7;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.gs-actions {
    margin-top: 2rem;
    text-align: center;
}

.gs-actions.gs-split {
    display: flex;
    justify-content: space-between;
}

.gs-btn-primary {
    background: linear-gradient(135deg, #00b4d8, #0066cc);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 14px;
}

.gs-btn-secondary {
    background: #e9eef5;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 14px;
}

.gs-btn-outline {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 16px;
    background: #e0f7ff;
    border: none;
}

.gs-form-group {
    margin-bottom: 1.5rem;
}

.gs-form-group input,
.gs-form-group select {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 2px solid #e6eef7;
}

.gs-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.gs-divider::before,
.gs-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e6eef7;
}

.gs-divider::before {
    left: 0;
}

.gs-divider::after {
    right: 0;
}

.gs-divider span {
    background: #fff;
    padding: 0 1rem;
}

.gs-schedule-group {
    margin-bottom: 2.5rem;
}

.gs-section-label {
    display: block;
    font-weight: 700;
    color: #003d7a;
    margin-bottom: 1rem;
}

.gs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.gs-slot {
    padding: 1.2rem;
    border-radius: 14px;
    border: 2px solid #e6eef7;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gs-slot:hover {
    border-color: #00b4d8;
    background: #f8fbff;
}

.gs-slot.active {
    background: linear-gradient(135deg, #00b4d8, #0066cc);
    color: #fff;
    border-color: transparent;
}

.gs-form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: 2px solid #e6eef7;
    resize: vertical;
}

.gs-confirm-card {
    background: #f8fbfe;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.gs-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    border-bottom: 1px solid #e6eef7;
}

.gs-confirm-row:last-child {
    border-bottom: none;
}

.gs-confirm-label {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 500;
}

.gs-confirm-value {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 600;
}

/* =========================
   MOBILE RESPONSIVENESS ONLY
   ========================= */
@media (max-width: 768px) {

    /* ---- Global spacing fixes ---- */
    body {
        font-size: 15px;
    }

    section {
        padding: 3rem 1.25rem !important;
    }

    /* ---- Navbar ---- */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem !important;
    }

    .logo,
    .nav-container img {
        max-width: 120px;
    }

    .cta-button {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
    }

    /* ---- Hero ---- */
    .hero {
        margin-top: 30px;
        padding: 4rem 1.25rem;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    /* ---- Pillars ---- */
    .pillars {
        gap: 1.25rem;
    }

    .pillar-card {
        padding: 1.5rem;
    }

    /* ---- Feature cards ---- */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    /* ---- Stats ---- */
    .stat-number {
        font-size: 2rem;
    }

    /* ---- Automation cards ---- */
    .automation-card {
        padding: 1.5rem;
    }

    /* ---- Architecture visual ---- */
    .architecture-visual {
        padding: 1.5rem;
    }

    .arch-layer {
        gap: 1rem;
        padding: 1rem;
    }

    /* ---- Blog cards ---- */
    .blog-card {
        padding: 1.75rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    /* ---- Medium blog ---- */
    .medium-article {
        padding: 0;
    }

    .medium-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .medium-content {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .medium-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .medium-author-bio {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ---- Solution scroll ---- */
    .solution-scroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .solution-block {
        padding: 1.75rem;
    }

    .solution-option {
        align-items: flex-start;
    }

    .solution-option span {
        font-size: 0.95rem;
    }

    /* ---- Org inputs ---- */
    .org-inputs {
        gap: 1rem;
    }

    /* ---- Buttons ---- */
    button,
    .btn-primary,
    .btn-secondary,
    .authenticate-btn,
    .sso-btn {
        width: 100%;
        font-size: 1rem;
    }

    /* ---- GS Stepper ---- */
    .gs-stepper-wrapper {
        padding: 1.75rem;
    }

    .gs-stepper {
        overflow-x: auto;
        gap: 0.75rem;
    }

    .gs-step {
        min-width: 80px;
    }

    .gs-line {
        min-width: 30px;
    }

    .gs-title {
        font-size: 1.5rem;
    }

    .gs-card {
        padding: 1.5rem;
    }

    .gs-actions.gs-split {
        flex-direction: column;
        gap: 1rem;
    }

    /* ---- Schedule slots ---- */
    .gs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gs-slot {
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* ---- Confirm step ---- */
    .gs-confirm-card {
        padding: 1.75rem;
    }

    .gs-confirm-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    /* ---- Footer ---- */
    .footer-content {
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section ul {
        padding-left: 0;
    }

    /* ---- Prevent horizontal scroll ---- */
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {

    /* --- Normalize navbar height --- */
    .navbar {
        padding: 0.6rem 0 !important;
    }

    /* --- Force single consistent flex layout --- */
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 !important;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    /* --- Logo alignment --- */
    .nav-container img {
        height: 32px;
        width: auto;
        display: block;
    }

    /* --- Hide desktop links --- */
    .nav-links {
        display: none !important;
    }

    /* --- Get Started button fix --- */
    .cta-button {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
        white-space: nowrap;
        border-radius: 20px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* --- Mobile menu button --- */
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        width: 38px;
        height: 38px;
        padding: 0;
        margin: 0;

        font-size: 1.6rem;
        line-height: 1;
        color: #003d7a;

        background: transparent;
        border: none;
        cursor: pointer;
    }

    /* --- Ensure correct order --- */
    .nav-container>img {
        order: 1;
    }

    .nav-container>.cta-button {
        order: 2;
    }

    .nav-container>.mobile-menu-btn {
        order: 3;
    }
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 999;
    cursor: pointer;
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e6eef7;
    font-weight: 600;
    color: #003d7a;
    text-decoration: none;
    cursor: pointer;
}

.mobile-nav a:hover {
    background: #f8fbff;
    color: #0066cc;
}

/* visible state */
.mobile-nav.active {
    display: flex;
}

/* desktop safety */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

#solutions {
    scroll-margin-top: 70px;
}

#bottomLine {
    scroll-margin-top: 70px;
}

#aiPowered {
    scroll-margin-top: 70px;
}

#abstraction {
    scroll-margin-top: 70px;
}

#orchestration {
    scroll-margin-top: 70px;
}

.subSection-card-box {
    margin-top: 2rem;
}

.sub-title-list {
    margin-left: 2rem;
}

.sub-title-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* Section Wrapper */
.ai-application-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.75;
}

/* Intro Text */
.intro-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.quote-inline {
    font-style: italic;
    color: #667eea;
}

/* Quote Box */
.ai-quote-box {
    background: linear-gradient(135deg, #eef2ff, #e6ecff);
    border-left: 6px solid #667eea;
    padding: 30px 35px;
    border-radius: 8px;
    margin: 40px 0;
}

/* Quote Text */
.ai-quote-text {
    font-size: 26px;
    font-style: italic;
    color: #5b75f6;
    margin-bottom: 15px;
}

/* Quote Author */
.ai-quote-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Post Quote Paragraph */
.post-quote-text {
    font-size: 20px;
    color: #444;
    margin: 30px 0 20px;
}

/* Highlighted Line */
.highlight-text {
    color: #667eea;
    font-weight: 700;
}

/* Body Text */
.body-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .intro-text,
    .post-quote-text {
        font-size: 18px;
    }

    .ai-quote-text {
        font-size: 22px;
    }

    .body-text {
        font-size: 16px;
    }
}

/* Section Wrapper */
.stack-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* Title */
.stack-title {
    font-size: 42px;
    font-weight: 700;
    color: #6b7df5;
    margin-bottom: 12px;
}

/* Yellow underline */
.stack-underline {
    width: 100%;
    height: 4px;
    background: #f5a623;
    margin-bottom: 30px;
}

/* Intro */
.stack-intro {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin-bottom: 50px;
}

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

/* Cards */
.stack-card {
    background: linear-gradient(135deg, #6b7df5, #7a5bbf);
    color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Numbers */
.stack-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Labels */
.stack-label {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Descriptions */
.stack-desc {
    font-size: 16px;
    opacity: 0.95;
}

/* Arrow card */
.stack-arrow {
    background: linear-gradient(135deg, #6b7df5, #7a5bbf);
}

.stack-arrow-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

/* Footer */
.stack-footer {
    font-size: 20px;
    color: #444;
    margin: 45px 0 20px;
}

/* Highlight */
.stack-highlight {
    font-size: 22px;
    font-weight: 700;
    color: #6b7df5;
}

/* Responsive */
@media (max-width: 900px) {
    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stack-grid {
        grid-template-columns: 1fr;
    }

    .stack-title {
        font-size: 32px;
    }

    .stack-intro {
        font-size: 18px;
    }
}

/* Section wrapper */
.application-layer-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Section title */
.section-title-blog {
    font-size: 42px;
    font-weight: 700;
    color: #6b7df5;
    margin-bottom: 12px;
}

/* Yellow underline (reuse style) */
.section-underline {
    width: 100%;
    height: 4px;
    background: #f5a623;
    margin-bottom: 20px;
}

/* Purple card */
.application-card {
    background: linear-gradient(135deg, #6b7df5, #7a5bbf);
    border-radius: 22px;
    padding: 50px 55px;
    color: #fff;
    margin-bottom: 60px;
}

/* Card title */
.application-card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon {
    font-size: 28px;
}

/* Intro text */
.application-intro {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* List */
.application-list {
    list-style: disc;
    margin-left: 22px;
    margin-bottom: 30px;
}

.application-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Footer text inside card */
.application-footer {
    font-size: 19px;
    line-height: 1.75;
    opacity: 0.95;
}

/* Inline highlight */
.highlight-inline {
    color: #ebbe069b;
    font-weight: 700;
}

/* Next section header */
.next-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
}

/* Next section paragraph */
.next-section-text {
    font-size: 20px;
    color: #444;
    max-width: 900px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-blog {
        font-size: 32px;
    }

    .application-card {
        padding: 35px 30px;
    }

    .application-card-title {
        font-size: 26px;
    }

    .next-section-title {
        font-size: 26px;
    }
}

/* Section wrapper */
.applications-value-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 10px;
}

/* Numbered headings */
.value-heading {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin: 45px 0 18px;
    letter-spacing: 0.2px;
}

/* Paragraphs */
.value-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Bullet list */
.value-list {
    margin: 18px 0 25px 22px;
}

.value-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

/* Emphasis list item */
.value-strong {
    color: #6b7df5;
    font-weight: 700;
}

/* Note text */
.value-note {
    font-size: 18px;
    color: #555;
    margin: 25px 0 40px;
}

/* Highlight sentence */
.value-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #6b7df5;
    margin: 22px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .value-heading {
        font-size: 24px;
    }

    .value-paragraph,
    .value-note {
        font-size: 17px;
    }

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

/* Section wrapper */
.layer-connection-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Intro text */
.layer-intro {
    font-size: 20px;
    color: #444;
    margin-bottom: 35px;
}

/* Quote box (same visual language as earlier quotes) */
.layer-quote-box {
    background: linear-gradient(135deg, #eef2ff, #e6ecff);
    border-left: 6px solid #6b7df5;
    border-radius: 10px;
    padding: 30px 35px;
    margin: 40px 0;
}

.layer-quote-text {
    font-size: 24px;
    font-style: italic;
    color: #5b75f6;
    margin-bottom: 14px;
    line-height: 1.6;
}

.layer-quote-author {
    font-size: 16px;
    color: #555;
}

/* Paragraphs */
.layer-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Sub-title */
.layer-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 55px 0 22px;
}

/* Model labels */
.model-label {
    font-weight: 800;
    color: #6b7df5;
}

/* Highlight line */
.layer-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #6b7df5;
    margin: 22px 0;
}

/* List */
.layer-list {
    margin: 15px 0 0 22px;
}

.layer-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .layer-subtitle {
        font-size: 24px;
    }

    .layer-quote-text {
        font-size: 20px;
    }

    .layer-paragraph,
    .layer-intro {
        font-size: 17px;
    }
}

/* Section wrapper */
.layer-connection-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Intro text */
.layer-intro {
    font-size: 20px;
    color: #444;
    margin-bottom: 35px;
}

/* Quote box (same visual language as earlier quotes) */
.layer-quote-box {
    background: linear-gradient(135deg, #eef2ff, #e6ecff);
    border-left: 6px solid #6b7df5;
    border-radius: 10px;
    padding: 30px 35px;
    margin: 40px 0;
}

.layer-quote-text {
    font-size: 24px;
    font-style: italic;
    color: #5b75f6;
    margin-bottom: 14px;
    line-height: 1.6;
}

.layer-quote-author {
    font-size: 16px;
    color: #555;
}

/* Paragraphs */
.layer-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Sub-title */
.layer-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 55px 0 22px;
}

/* Model labels */
.model-label {
    font-weight: 800;
    color: #6b7df5;
}

/* Highlight line */
.layer-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #6b7df5;
    margin: 22px 0;
}

/* List */
.layer-list {
    margin: 15px 0 0 22px;
}

.layer-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .layer-subtitle {
        font-size: 24px;
    }

    .layer-quote-text {
        font-size: 20px;
    }

    .layer-paragraph,
    .layer-intro {
        font-size: 17px;
    }
}

/* Section wrapper */
.gosure-positioning-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Orange gradient card */
.gosure-card {
    background: linear-gradient(180deg, #ffb200, #ff9f00);
    border-radius: 22px;
    padding: 50px 55px;
    color: #1f1f1f;
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.35);
    margin-bottom: 60px;
}

/* Card title */
.gosure-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

/* Layer headers */
.gosure-layer-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 14px;
    letter-spacing: 0.4px;
}

/* Card text */
.gosure-text {
    font-size: 18px;
    line-height: 1.75;
    color: #2a2a2a;
    margin-bottom: 14px;
}

/* Card list */
.gosure-list {
    margin: 12px 0 22px 22px;
}

.gosure-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Why section */
.why-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 28px;
}

/* Ordered list */
.why-list {
    counter-reset: why;
    list-style: none;
    padding-left: 0;
}

.why-list li {
    counter-increment: why;
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #444;
    position: relative;
    padding-left: 34px;
}

.why-list li::before {
    content: counter(why) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #6b7df5;
}

/* Emphasis inside list */
.why-list span {
    font-weight: 800;
    color: #6b7df5;
}

/* Responsive */
@media (max-width: 768px) {
    .gosure-card {
        padding: 35px 30px;
    }

    .gosure-card-title {
        font-size: 26px;
    }

    .why-title {
        font-size: 26px;
    }

    .why-list li {
        font-size: 17px;
    }
}

/* Section wrapper */
.gosure-analyst-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Orange gradient card */
.analyst-card {
    background: linear-gradient(180deg, #ffb200, #ff9f00);
    border-radius: 22px;
    padding: 50px 55px;
    box-shadow: 0 14px 32px rgba(255, 165, 0, 0.35);
    color: #1f1f1f;
}

/* Card title */
.analyst-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 26px;
}

/* Intro text */
.analyst-intro {
    font-size: 19px;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 28px;
}

/* Subtitle */
.analyst-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 35px 0 18px;
}

/* List */
.analyst-list {
    margin: 0 0 30px 22px;
}

.analyst-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Footer emphasis */
.analyst-footer {
    font-size: 19px;
    line-height: 1.8;
    color: #2a2a2a;
}

/* Responsive */
@media (max-width: 768px) {
    .analyst-card {
        padding: 35px 30px;
    }

    .analyst-card-title {
        font-size: 26px;
    }

    .analyst-intro,
    .analyst-footer {
        font-size: 17px;
    }

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

/* Section wrapper */
.gosure-works-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Main title */
.works-title {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

/* Blue uppercase subtitles */
.works-subtitle {
    font-size: 18px;
    font-weight: 800;
    color: #6b7df5;
    letter-spacing: 0.4px;
    margin: 28px 0 10px;
}

/* Paragraphs */
.works-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Inline quote highlight */
.works-highlight {
    color: #6b7df5;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .works-title {
        font-size: 24px;
    }

    .works-paragraph {
        font-size: 17px;
    }

    .works-subtitle {
        font-size: 16px;
    }
}

/* Section wrapper */
.realworld-example-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Card container */
.example-card {
    background: #fff7e6;
    border: 3px solid #ffb200;
    border-radius: 18px;
    padding: 45px 50px;
}

/* Title */
.example-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 26px;
}

/* Paragraphs */
.example-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 20px;
}

/* Labels */
.example-label {
    font-weight: 800;
    color: #6b7df5;
}

/* Sub-headings */
.example-subtitle {
    font-size: 20px;
    font-weight: 800;
    color: #6b7df5;
    margin: 30px 0 14px;
}

/* Lists */
.example-list {
    margin: 0 0 20px 22px;
}

.example-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

/* Result line */
.example-result {
    font-size: 19px;
    line-height: 1.75;
    color: #333;
    margin-top: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .example-card {
        padding: 32px 28px;
    }

    .example-title {
        font-size: 24px;
    }

    .example-paragraph,
    .example-result {
        font-size: 17px;
    }

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

/* Wrapper spacing */
.gosure-build-section,
.layer5-matters-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Titles */
.build-title,
.layer5-title {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
}

/* Intro text */
.build-intro,
.layer5-intro {
    font-size: 19px;
    color: #444;
    margin-bottom: 30px;
}

/* Phase headers */
.build-phase {
    font-size: 18px;
    font-weight: 800;
    color: #6b7df5;
    letter-spacing: 0.4px;
    margin: 28px 0 10px;
}

/* Paragraphs */
.build-paragraph,
.layer5-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Layer 5 list */
.layer5-list {
    margin: 18px 0 30px 22px;
}

.layer5-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    color: #444;
}

/* Emphasis */
.layer5-list span {
    color: #6b7df5;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {

    .build-title,
    .layer5-title {
        font-size: 24px;
    }

    .build-paragraph,
    .layer5-paragraph {
        font-size: 17px;
    }

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

/* Shared text */
.content-paragraph {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

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

/* Lists */
.content-list,
.numbered-list {
    margin: 20px 0 30px 22px;
}

.content-list li,
.numbered-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Advantage card */
.advantage-card {
    background: #fff7e6;
    border: 3px solid #ffb200;
    border-radius: 18px;
    padding: 40px 45px;
    margin: 40px 0;
}

.advantage-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.advantage-list span {
    color: #6b7df5;
    font-weight: 800;
}

/* Purple hero */
.win-layer-section {
    margin: 0px auto;
    padding: 0 20px;
}

.win-card {
    background: linear-gradient(180deg, #6b7df5, #7a63c9);
    border-radius: 22px;
    padding: 60px;
    color: #fff;
    text-align: center;
}

.win-card h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 24px;
}

.win-highlight {
    font-weight: 800;
    margin: 22px 0;
}

/* Key takeaway */
.key-takeaway-card {
    background: #fff7e6;
    border: 3px solid #ffb200;
    border-radius: 18px;
    padding: 40px;
    margin: 40px 0;
}

.key-highlight {
    color: #6b7df5;
    font-weight: 800;
    margin-top: 20px;
}

/* Final question */
.final-question {
    font-size: 22px;
    font-weight: 800;
    color: #6b7df5;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .win-card {
        padding: 40px 30px;
    }

    .win-card h2 {
        font-size: 26px;
    }
}

/* Section wrapper */
.enterprise-should-do-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 20px;
}

/* Subsection titles */
.enterprise-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin: 0px 0 20px;
}

/* Numbered list */
.enterprise-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    margin-bottom: 50px;
}

.enterprise-list li {
    counter-increment: item;
    position: relative;
    padding-left: 34px;
    margin-bottom: 26px;
}

/* Numbers */
.enterprise-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #6b7df5;
}

/* Headline inside item */
.enterprise-list span {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #6b7df5;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

/* Description */
.enterprise-list p {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .enterprise-subtitle {
        font-size: 20px;
    }

    .enterprise-list p {
        font-size: 16px;
    }
}

/* Purple hero section */
.app-win-section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;
}

.app-win-card {
    background: linear-gradient(180deg, #6b7df5, #7a63c9);
    border-radius: 22px;
    padding: 60px;
    text-align: center;
    color: #ffffff;
}

.app-win-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 26px;
}

.app-win-text {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.app-win-highlight {
    font-size: 19px;
    font-weight: 800;
    margin: 24px 0;
    color: #e7ebff;
}

/* Bottom line */
.bottom-line-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.bottom-line-text {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* Key takeaway card */
.key-takeaway-card {
    background: #fff7e6;
    border: 3px solid #ffb200;
    border-radius: 18px;
    padding: 40px 45px;
    margin: 40px 0;
}

.key-takeaway-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.key-takeaway-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 14px;
}

.key-highlight {
    color: #6b7df5;
    font-weight: 800;
    margin-top: 18px;
}

/* Final question */
.final-question {
    font-size: 22px;
    font-weight: 800;
    color: #6b7df5;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .app-win-card {
        padding: 40px 30px;
    }

    .app-win-title {
        font-size: 26px;
    }

    .final-question {
        font-size: 20px;
    }
}

/* Core content */
.refined-content {
    /* max-width: 760px; */
    margin: 0 auto;
}

.refined-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 1.25rem;
}

.refined-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0f172a;
}

.refined-content .insight {
    font-weight: 600;
    color: #0f172a;
}

/* Headings */
.refined-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
}

.refined-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

/* Lists */
.outcome-list,
.ecosystem-list {
    margin: 1.25rem 0 2rem 1.2rem;
}

.outcome-list li,
.ecosystem-list li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

/* Blockquotes */
.refined-content blockquote {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #2563eb;
    font-style: italic;
    font-size: 1.15rem;
    color: #0f172a;
}

/* CTA PANEL */
.blog-cta {
    margin-top: 4rem;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e5e7eb;
}

.blog-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.cta-question {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.cta-question span {
    color: #2563eb;
}

.cta-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.cta-divider {
    width: 80px;
    height: 2px;
    background: #2563eb;
    margin: 2rem auto;
}

.cta-footer {
    font-size: 1.05rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 1.75rem;
}

.cta-button-primary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: #2563eb;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button-primary:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* rama blog 6 */
/* HERO */
.hero-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.hero-card h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.highlight {
    background: #2f6fed;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

/* GRID */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

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

.risks {
    border-left: 6px solid #e63946;
}

.protection {
    border-left: 6px solid #f4a300;
}

/* INFO BOX */
.info-box {
    background: #f8f9fc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-box h4 {
    margin-bottom: 6px;
    font-size: 15px;
    color: #2f6fed;
}

/* PROMISE */
.promise {
    background: linear-gradient(90deg, #ffb100, #ff9900);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.promise p {
    font-weight: 400;
    margin-top: 8px;
}

/* BOTTOM */
.bottom-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.bottom-card h3 {
    margin-bottom: 15px;
}

.cta-box {
    margin-top: 20px;
    padding: 15px;
    background: #eef2ff;
    border-left: 4px solid #2f6fed;
    border-radius: 6px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-section {
        grid-template-columns: 1fr;
    }
}

.ai-investment-wrapper {
    background: white;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Top Card */
.top-card {
    margin-bottom: 15px;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.top-card h2 {
    font-size: 26px;
    color: #1f3c88;
    margin-bottom: 18px;
}

.top-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Two Columns */
.two-column {
    /* max-width: 1100px; */
    /* margin: auto; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Cards */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

/* Risks Styling */
.risks {
    border-left: 5px solid #e63946;
}

.risks h3 {
    color: #e63946;
}

/* Protection Styling */
.protection {
    border-left: 5px solid #f4a300;
}

.protection h3 {
    color: #f4a300;
}

/* Inner Boxes */
.inner-box {
    background: #fff;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.inner-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.risks .inner-box h4 {
    color: #e63946;
}

.protection .inner-box h4 {
    color: #1f5ed9;
}

.inner-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .top-card,
    .card {
        padding: 25px;
    }
}

/* ===== Core Digital Medium Styling ===== */

.core-digital-content {
    font-size: 18px;
    line-height: 1.75;
}

/* Intro Gradient Block */
.cdc-intro-block {
    background: linear-gradient(135deg, #0a7c7e 0%, #13a89e 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.cdc-intro-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

/* Section Title */
.cdc-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0a7c7e;
}

/* Reality Box */
.cdc-reality-box {
    background: #f3e7c4;
    border-left: 5px solid #e67e22;
    padding: 20px 25px;
    margin: 25px 0 35px 0;
    border-radius: 6px;
    font-size: 16px;
}

.cdc-reality-box strong {
    color: #e67e22;
}

/* Gap Grid */
.cdc-gap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Gap Cards */
.cdc-gap-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #e67e22;
    transition: transform 0.2s ease;
}

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

.cdc-gap-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1b3b6f;
}

.cdc-gap-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.cdc-impact {
    margin-top: 15px;
    color: #e67e22;
    font-weight: 600;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .cdc-gap-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Two-Tier Architecture Styling ===== */

.core-architecture-content {
    margin-top: 60px;
}

.cac-section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0a7c7e;
}

.cac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.cac-card {
    background: #f7f8fa;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.cac-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1b3b6f;
}

.cac-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cac-card ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
}

/* Bullet styling */
.cac-card ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 16px;
}

/* Keep Card Accent */
.cac-keep {
    border-left: 6px solid #1b3b6f;
}

.cac-keep ul li::before {
    color: #1b3b6f;
}

/* Gain Card Accent */
.cac-gain {
    border-left: 6px solid #27ae60;
}

.cac-gain ul li::before {
    color: #27ae60;
}

/* Responsive */
@media (max-width: 900px) {
    .cac-grid {
        grid-template-columns: 1fr;
    }
}

.gap-block {
    background: #f5f6f8;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 50px;
    border-left: 4px solid #0a7c7e;
}

.gap-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.gap-number {
    width: 40px;
    height: 40px;
    background: #d4a017;
    color: #1b3b6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.gap-col {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.gap-col h4 {
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.expect h4 {
    background: #0a7c7e;
}

.limitation h4 {
    background: #e67e22;
}

.solution h4 {
    background: #27ae60;
}

.gap-col ul {
    list-style: none;
    padding: 0;
}

.gap-col ul li {
    padding: 8px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
}

.gap-col ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 10px;
}

.expect ul li::before {
    color: #0a7c7e;
}

.limitation ul li::before {
    color: #e67e22;
}

.solution ul li::before {
    color: #27ae60;
}

.gap-footer {
    background: #1b3b6f;
    color: #fff;
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 6px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .gap-grid {
        grid-template-columns: 1fr;
    }
}

.architecture-section {
    /* background: #f4f6f9; */
    /* padding: 80px 20px; */
    font-family: 'Segoe UI', sans-serif;
}

/* .architecture-container {
                max-width: 900px;
                margin: 0 auto;
            } */

.architecture-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b3b6f;
    margin-bottom: 15px;
    border-bottom: 3px solid #0a7c7e;
    padding-bottom: 12px;
}

.architecture-intro {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Layer Boxes */
.arch-layer {
    /* padding: 28px 30px; */
    border-radius: 10px;
    color: white;
    /* margin: 0 auto; */
    /* max-width: 750px; */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.arch-layer h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.arch-layer p {
    font-size: 15px;
    opacity: 0.9;
}

/* Colors */
.layer-green {
    background: #2faa60;
}

.layer-teal {
    background: #157f7f;
}

.layer-blue {
    background: #3a5a97;
}

.layer-navy {
    background: #243e73;
}

/* Arrow */
.arch-arrow {
    text-align: center;
    font-size: 28px;
    color: #d4a017;
    margin: 15px 0;
}

/* Key Principle */
.arch-key-principle {
    margin-top: 40px;
    background: linear-gradient(135deg, #0a7c7e 0%, #13a89e 100%);
    color: white;
    padding: 22px 25px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .architecture-title {
        font-size: 24px;
    }

    .arch-layer {
        padding: 20px;
    }

    .arch-arrow {
        font-size: 22px;
    }
}


.roadmap-container {
    max-width: 1100px;
    margin: 0 auto;
}

.roadmap-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b3b6f;
    border-bottom: 3px solid #0a7c7e;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.roadmap-intro {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Card */
.roadmap-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0a7c7e;
}

/* Header */
.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.phase-number {
    width: 40px;
    height: 40px;
    background: #0a7c7e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.roadmap-card h3 {
    font-size: 18px;
    color: #1b3b6f;
}

/* List */
.roadmap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-card ul li {
    padding: 8px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
}

.roadmap-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0a7c7e;
}

/* Divider */
.phase-divider {
    height: 2px;
    background: #d4a017;
    margin: 20px 0;
}

/* Outcome */
.phase-outcome {
    color: #27ae60;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

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

.outcomes-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b3b6f;
    border-bottom: 3px solid #0a7c7e;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.outcomes-intro {
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

/* Cards */
.outcome-card {
    background: linear-gradient(145deg, #2f4f88, #1b3b6f);
    color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
}

.outcome-card .icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.outcome-card .metric {
    font-size: 34px;
    font-weight: 700;
    color: #f4b400;
    margin-bottom: 12px;
}

.outcome-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* CTA Section */
.cta-wrapper {
    background: linear-gradient(135deg, #1b3b6f 0%, #0a7c7e 100%);
    padding: 60px 40px;
    border-radius: 14px;
    text-align: center;
    color: white;
}

.cta-title {
    color: #f4b400;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-subtext {
    color: #13a89e;
    margin-bottom: 40px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 10px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h4 {
    color: #f4b400;
    margin-bottom: 20px;
}

.cta-box ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.cta-box li {
    margin-bottom: 10px;
}

.cta-contact {
    text-align: center;
    font-weight: 600;
    color: #13a89e;
}

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

@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }
}