 .fms-page {
     font-family: 'Inter', sans-serif;
     color: #334155;
     background-color: #f8fafc;
     overflow-x: hidden;
 }

 /* Hero Section */
 .fms-hero {
     background: linear-gradient(135deg, #0b1528 0%, #111e36 100%);
     padding: 140px 0 100px 0;
     color: #ffffff;
     position: relative;
     overflow: hidden;
 }

 .fms-hero::before {
     content: '';
     position: absolute;
     top: -20%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(33, 216, 145, 0.15) 0%, transparent 70%);
     pointer-events: none;
 }

 .fms-hero::after {
     content: '';
     position: absolute;
     bottom: -20%;
     left: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(9, 136, 255, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .fms-hero-badge {
     background: rgba(33, 216, 145, 0.1);
     color: #21D891;
     border: 1px solid rgba(33, 216, 145, 0.3);
     padding: 6px 16px;
     border-radius: 50px;
     display: inline-block;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     margin-bottom: 25px;
 }

 .fms-hero-title {
     font-family: 'Outfit', sans-serif;
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.15;
     margin-bottom: 20px;
     letter-spacing: -0.5px;
 }

 .fms-hero-title span {
     color: #21D891;
     background: linear-gradient(to right, #21D891, #0988FF);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .fms-hero-subtitle {
     font-size: 1.2rem;
     color: #94a3b8;
     max-width: 750px;
     line-height: 1.6;
     margin-bottom: 35px;
 }

 .fms-hero-btns {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .fms-btn-primary {
     background-color: #21D891;
     color: #ffffff;
     padding: 14px 32px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     border: 1px solid #21D891;
     box-shadow: 0 4px 14px rgba(33, 216, 145, 0.3);
 }

 .fms-btn-primary:hover {
     background-color: #1bb77b;
     border-color: #1bb77b;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(33, 216, 145, 0.4);
 }

 .fms-btn-outline {
     background: transparent;
     color: #ffffff;
     padding: 14px 32px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .fms-btn-outline:hover {
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(255, 255, 255, 0.5);
     color: #ffffff;
     transform: translateY(-2px);
 }

 /* Proposal Card */
 .fms-proposal-card {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .fms-proposal-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 12px;
 }

 .fms-proposal-desc {
     color: #94a3b8;
     font-size: 0.9rem;
     margin-bottom: 25px;
     line-height: 1.5;
 }

 .fms-proposal-btn {
     background: #0988FF;
     color: #ffffff;
     font-weight: 600;
     padding: 12px 30px;
     border-radius: 8px;
     text-decoration: none;
     display: block;
     transition: all 0.3s ease;
     border: 1px solid #0988FF;
     box-shadow: 0 4px 14px rgba(9, 136, 255, 0.35);
 }

 .fms-proposal-btn:hover {
     background: #0076e5;
     border-color: #0076e5;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(9, 136, 255, 0.45);
 }

 .fms-confidential-tag {
     color: #475569;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-top: 20px;
     font-weight: 700;
 }

 /* Section Layouts */
 .fms-section {
     padding: 90px 0;
 }

 .fms-bg-light {
     background-color: #f8fafc;
 }

 .fms-bg-white {
     background-color: #ffffff;
 }

 .fms-label {
     color: #21D891;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1.5px;
     display: block;
     margin-bottom: 12px;
 }

 .fms-title {
     font-family: 'Outfit', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 20px;
     line-height: 1.25;
 }

 .fms-lead-text {
     font-size: 1.25rem;
     font-weight: 500;
     line-height: 1.5;
     color: #334155;
     margin-bottom: 20px;
 }

 .fms-body-text {
     color: #64748b;
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 /* Questions Box */
 .fms-q-box {
     background: #f1f5f9;
     border-left: 5px solid #21D891;
     border-radius: 0 16px 16px 0;
     padding: 35px;
     margin-top: 40px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
 }

 .fms-q-box-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.35rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 25px;
 }

 .fms-q-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .fms-q-card {
     display: flex;
     align-items: center;
     background: #ffffff;
     padding: 16px 20px;
     border-radius: 10px;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
     border: 1px solid #e2e8f0;
     transition: all 0.3s ease;
 }

 .fms-q-card:hover {
     transform: translateY(-2px);
     border-color: rgba(33, 216, 145, 0.3);
     box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.05);
 }

 .fms-q-icon {
     width: 36px;
     height: 36px;
     background: rgba(33, 216, 145, 0.1);
     color: #21D891;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     flex-shrink: 0;
     font-size: 0.95rem;
 }

 .fms-q-text {
     font-weight: 600;
     color: #1e293b;
     font-size: 0.95rem;
 }

 /* Stakeholder Section */
 .fms-stakeholder-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .fms-stakeholder-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     padding: 35px;
     transition: all 0.3s ease;
     height: 100%;
 }

 .fms-stakeholder-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
     border-color: rgba(9, 136, 255, 0.2);
 }

 .fms-card-icon {
     width: 60px;
     height: 60px;
     border-radius: 12px;
     background: rgba(9, 136, 255, 0.08);
     color: #0988FF;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.75rem;
     margin-bottom: 25px;
     transition: all 0.3s ease;
 }

 .fms-stakeholder-card:hover .fms-card-icon {
     background: #0988FF;
     color: #ffffff;
 }

 .fms-card-heading {
     font-family: 'Outfit', sans-serif;
     font-size: 1.4rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 20px;
 }

 .fms-card-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .fms-card-list li {
     font-size: 0.95rem;
     color: #475569;
     margin-bottom: 12px;
     position: relative;
     padding-left: 24px;
     line-height: 1.4;
 }

 .fms-card-list li::before {
     content: "\f00c";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 2px;
     color: #10b981;
     font-size: 0.85rem;
 }

 /* Roadmap Section */
 .fms-roadmap-panel {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     padding: 45px;
     height: 100%;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
     transition: all 0.3s ease;
     position: relative;
 }

 .fms-roadmap-panel:hover {
     border-color: rgba(33, 216, 145, 0.3);
     box-shadow: 0 20px 30px rgba(0, 0, 0, 0.04);
 }

 .fms-roadmap-badge {
     background: rgba(33, 216, 145, 0.08);
     color: #21D891;
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 25px;
 }

 .fms-roadmap-badge.strategy {
     background: rgba(9, 136, 255, 0.08);
     color: #0988FF;
 }

 .fms-roadmap-heading {
     font-family: 'Outfit', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 20px;
 }

 .fms-roadmap-desc {
     color: #64748b;
     font-size: 1.05rem;
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .fms-roadmap-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .fms-roadmap-list li {
     padding-left: 28px;
     position: relative;
     margin-bottom: 15px;
     font-size: 1rem;
     color: #334155;
     line-height: 1.5;
 }

 .fms-roadmap-list li::before {
     content: "\f058";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 2px;
     color: #21D891;
     font-size: 1.1rem;
 }

 .fms-roadmap-list.strategy li::before {
     color: #0988FF;
 }

 .fms-example-box {
     background: #f8fafc;
     border: 1px dashed #cbd5e1;
     border-radius: 12px;
     padding: 25px;
     margin-top: 25px;
 }

 .fms-example-title {
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     font-weight: 700;
     color: #475569;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 12px;
 }

 .fms-quote-banner {
     background: rgba(33, 216, 145, 0.05);
     border: 1px solid rgba(33, 216, 145, 0.15);
     border-radius: 16px;
     padding: 30px;
     text-align: center;
     margin-bottom: 50px;
 }

 .fms-quote-text {
     font-family: 'Outfit', sans-serif;
     font-size: 1.4rem;
     font-weight: 600;
     color: #0f172a;
     line-height: 1.4;
     margin-bottom: 0;
 }

 /* CTA Section */
 .fms-cta {
     background: linear-gradient(135deg, #0b1528 0%, #111e36 100%);
     padding: 80px 0;
     color: #ffffff;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .fms-cta-card {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .fms-cta-badge {
     background: rgba(33, 216, 145, 0.1);
     color: #21D891;
     border: 1px solid rgba(33, 216, 145, 0.2);
     padding: 5px 15px;
     border-radius: 30px;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     margin-bottom: 20px;
     display: inline-block;
 }

 .fms-cta-title {
     font-family: 'Outfit', sans-serif;
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 20px;
 }

 .fms-cta-desc {
     color: #94a3b8;
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 35px;
 }

 .fms-cta-btn {
     background-color: #21D891;
     color: #ffffff;
     padding: 15px 40px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     border: 1px solid #21D891;
     box-shadow: 0 4px 14px rgba(33, 216, 145, 0.35);
 }

 .fms-cta-btn:hover {
     background-color: #1bb77b;
     border-color: #1bb77b;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(33, 216, 145, 0.45);
 }

 /* Stage Styling */
 .fms-stages-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .fms-stage-box {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     padding: 40px;
     position: relative;
     box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .fms-stage-box:hover {
     transform: translateY(-5px);
     border-color: rgba(33, 216, 145, 0.3);
     box-shadow: 0 20px 40px -15px rgba(33, 216, 145, 0.1);
 }

 .fms-stage-number {
     position: absolute;
     top: 30px;
     right: 40px;
     font-family: 'Outfit', sans-serif;
     font-size: 2.5rem;
     font-weight: 800;
     color: #e2e8f0;
     line-height: 1;
 }

 .fms-stage-header {
     margin-bottom: 25px;
     border-bottom: 1px solid #f1f5f9;
     padding-bottom: 20px;
 }

 .fms-stage-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 10px;
     max-width: 80%;
     line-height: 1.3;
 }

 .fms-stage-purpose {
     color: #475569;
     font-size: 0.95rem;
     line-height: 1.5;
 }

 .fms-stage-purpose strong {
     color: #0f172a;
 }

 .fms-subheading-fms {
     font-family: 'Outfit', sans-serif;
     font-size: 1.05rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #0f172a;
     margin-top: 20px;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
 }

 .fms-subheading-fms i {
     margin-right: 8px;
     color: #21D891;
     font-size: 0.95rem;
 }

 .fms-subheading-fms.growth-stage-icon i {
     color: #0988FF;
 }

 .fms-focus-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 15px;
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .fms-focus-badge {
     background: #f1f5f9;
     color: #475569;
     padding: 6px 12px;
     border-radius: 6px;
     font-size: 0.85rem;
     font-weight: 600;
 }

 .fms-comp-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 15px;
     margin-bottom: 25px;
 }

 .fms-comp-item {
     background: #f8fafc;
     border-radius: 10px;
     padding: 15px 18px;
     border: 1px solid #f1f5f9;
 }

 .fms-comp-name {
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 4px;
     font-size: 0.95rem;
 }

 .fms-comp-desc-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .fms-comp-desc-list li {
     font-size: 0.85rem;
     color: #64748b;
     margin-bottom: 4px;
     position: relative;
     padding-left: 15px;
 }

 .fms-comp-desc-list li::before {
     content: "•";
     position: absolute;
     left: 0;
     color: #21D891;
     font-weight: bold;
 }

 .fms-comp-desc-list.strategy li::before {
     color: #0988FF;
 }

 .fms-meta-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-top: 1px solid #f1f5f9;
     padding-top: 20px;
     margin-top: 20px;
 }

 .fms-meta-label {
     font-size: 0.8rem;
     text-transform: uppercase;
     color: #94a3b8;
     font-weight: 700;
     letter-spacing: 0.5px;
 }

 .fms-meta-value {
     font-size: 0.95rem;
     font-weight: 700;
 }

 .fms-subheading-fms.mature-stage-icon i {
     color: #8b5cf6;
 }

 .fms-subheading-fms.pre-ipo-stage-icon i {
     color: #f97316;
 }

 .fms-subheading-fms.listed-stage-icon i {
     color: #ec4899;
 }

 .fms-meta-value.text-purple {
     color: #8b5cf6;
 }

 .fms-meta-value.text-orange {
     color: #f97316;
 }

 .fms-meta-value.text-rose {
     color: #ec4899;
 }

 .fms-comp-desc-list.mature li::before {
     color: #8b5cf6;
 }

 .fms-comp-desc-list.pre-ipo li::before {
     color: #f97316;
 }

 .fms-comp-desc-list.listed li::before {
     color: #ec4899;
 }

 /* Types Grid */
 .fms-types-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .fms-type-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     padding: 30px;
     transition: all 0.3s ease;
     height: 100%;
 }

 .fms-type-card:hover {
     transform: translateY(-5px);
     border-color: rgba(33, 216, 145, 0.3);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04);
 }

 .fms-type-card-icon {
     width: 48px;
     height: 48px;
     border-radius: 10px;
     background: rgba(33, 216, 145, 0.08);
     color: #21D891;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.35rem;
     margin-bottom: 20px;
     transition: all 0.3s ease;
 }

 .fms-type-card:hover .fms-type-card-icon {
     background: #21D891;
     color: #ffffff;
 }

 .fms-type-card-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.2rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 10px;
 }

 .fms-type-card-desc {
     color: #64748b;
     font-size: 0.9rem;
     line-height: 1.5;
     margin-bottom: 0;
 }

 /* Approach Steps */
 .fms-approach-container {
     position: relative;
     margin-top: 50px;
 }

 .fms-approach-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px;
 }

 .fms-step-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     padding: 30px;
     position: relative;
     height: 100%;
     transition: all 0.3s ease;
 }

 .fms-step-card:hover {
     border-color: rgba(9, 136, 255, 0.3);
     box-shadow: 0 15px 30px rgba(9, 136, 255, 0.05);
 }

 .fms-step-num-badge {
     background: rgba(9, 136, 255, 0.08);
     color: #0988FF;
     font-weight: 700;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     padding: 4px 10px;
     border-radius: 30px;
     display: inline-block;
     margin-bottom: 15px;
 }

 .fms-step-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.15rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 8px;
 }

 .fms-step-desc {
     color: #64748b;
     font-size: 0.88rem;
     line-height: 1.5;
     margin-bottom: 0;
 }

 /* Why Choose Us & Callouts */
 .fms-choose-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     padding: 45px;
     box-shadow: 0 4px 25px rgba(0, 0, 0, 0.01);
 }

 .fms-choose-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .fms-choose-list li {
     padding-left: 30px;
     position: relative;
     margin-bottom: 15px;
     font-size: 1.05rem;
     color: #334155;
     font-weight: 500;
 }

 .fms-choose-list li::before {
     content: "\f058";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 2px;
     color: #21D891;
     font-size: 1.15rem;
 }

 .fms-vision-final-box {
     background: rgba(33, 216, 145, 0.05);
     border: 1px solid rgba(33, 216, 145, 0.15);
     border-radius: 16px;
     padding: 40px;
     margin-top: 50px;
 }

 .fms-vf-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 15px;
 }