 /* Custom Styles for First Time Fund Raising Page with 'ftfr-' prefix */
 .ftfr-page {
     font-family: 'Inter', sans-serif;
     color: #334155;
     background-color: #f8fafc;

 }

 /* Hero Section */
 .ftfr-hero {
     background: linear-gradient(135deg, #0b1528 0%, #111e36 100%);
     padding: 140px 0 100px 0;
     color: #ffffff;
     position: relative;

 }

 .ftfr-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;
 }

 .ftfr-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;
 }

 .ftfr-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;
 }

 .ftfr-hero-title span {
     color: #21D891;
     background: linear-gradient(to right, #21D891, #0988FF);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .ftfr-hero-subtitle {
     font-size: 1.2rem;
     color: #94a3b8;
     max-width: 750px;
     line-height: 1.6;
     margin-bottom: 35px;
 }

 .ftfr-hero-btns {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .ftfr-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);
 }

 .ftfr-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);
 }

 .ftfr-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);
 }

 .ftfr-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 */
 .ftfr-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);
 }

 .ftfr-proposal-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 12px;
 }

 .ftfr-proposal-desc {
     color: #94a3b8;
     font-size: 0.9rem;
     margin-bottom: 25px;
     line-height: 1.5;
 }

 .ftfr-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);
 }

 .ftfr-proposal-btn:hover {
     background: #0076e5;
     border-color: #0076e5;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(9, 136, 255, 0.45);
 }

 .ftfr-confidential-tag {
     color: #475569;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-top: 20px;
     font-weight: 700;
 }

 /* Sections styling */
 .ftfr-section {
     padding: 90px 0;
 }

 .ftfr-bg-light {
     background-color: #f8fafc;
 }

 .ftfr-bg-white {
     background-color: #ffffff;
 }

 .ftfr-label {
     color: #21D891;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1.5px;
     display: block;
     margin-bottom: 12px;
 }

 .ftfr-title {
     font-family: 'Outfit', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 20px;
     line-height: 1.25;
 }

 .ftfr-desc {
     color: #64748b;
     font-size: 1.05rem;
     line-height: 1.7;
     max-width: 800px;
     margin-bottom: 40px;
 }

 /* Comparison Cards */
 .ftfr-comp-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .ftfr-comp-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 40px;
     border: 1px solid #e2e8f0;
     box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
     transition: all 0.3s ease;
     height: 100%;
 }

 .ftfr-comp-card:hover {
     transform: translateY(-5px);
 }

 .ftfr-comp-card.success-border {
     border-left: 6px solid #21D891;
 }

 .ftfr-comp-card.success-border:hover {
     border-color: #21D891;
     box-shadow: 0 20px 40px -10px rgba(33, 216, 145, 0.15);
 }

 .ftfr-comp-card.danger-border {
     border-left: 6px solid #ef4444;
 }

 .ftfr-comp-card.danger-border:hover {
     border-color: #ef4444;
     box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.15);
 }

 .ftfr-comp-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.4rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 15px;
 }

 .ftfr-comp-subtitle {
     font-size: 0.95rem;
     color: #64748b;
     margin-bottom: 25px;
     line-height: 1.5;
 }

 .ftfr-comp-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .ftfr-comp-list li {
     font-size: 0.95rem;
     color: #475569;
     margin-bottom: 15px;
     position: relative;
     padding-left: 28px;
     line-height: 1.4;
 }

 .ftfr-comp-list li i {
     position: absolute;
     left: 0;
     top: 3px;
     font-size: 1.1rem;
 }

 /* Steps Group & Cards */
 .ftfr-group-header {
     border-bottom: 2px solid #e2e8f0;
     padding-bottom: 15px;
     margin-bottom: 35px;
     margin-top: 50px;
 }

 .ftfr-group-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.75rem;
     font-weight: 700;
     color: #0f172a;
 }

 .ftfr-steps-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 25px;
 }

 .ftfr-step-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     padding: 30px;
     height: 100%;
     transition: all 0.3s ease;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .ftfr-step-card:hover {
     transform: translateY(-4px);
     border-color: rgba(9, 136, 255, 0.3);
     box-shadow: 0 15px 30px rgba(9, 136, 255, 0.05);
 }

 .ftfr-step-num {
     position: absolute;
     top: 25px;
     right: 30px;
     font-family: 'Outfit', sans-serif;
     font-size: 1.75rem;
     font-weight: 800;
     color: #f1f5f9;
 }

 .ftfr-step-card:hover .ftfr-step-num {
     color: rgba(9, 136, 255, 0.1);
 }

 .ftfr-step-heading {
     font-family: 'Outfit', sans-serif;
     font-size: 1.25rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 15px;
     padding-right: 30px;
 }

 .ftfr-step-desc {
     color: #64748b;
     font-size: 0.92rem;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .ftfr-step-bullets-title {
     font-size: 0.8rem;
     text-transform: uppercase;
     font-weight: 700;
     color: #475569;
     letter-spacing: 0.5px;
     margin-bottom: 10px;
 }

 .ftfr-step-bullets {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .ftfr-step-bullets li {
     font-size: 0.88rem;
     color: #475569;
     margin-bottom: 8px;
     position: relative;
     padding-left: 18px;
 }

 .ftfr-step-bullets li::before {
     content: "•";
     position: absolute;
     left: 0;
     color: #0988FF;
     font-weight: bold;
     font-size: 1.1rem;
     line-height: 0.8;
     top: 2px;
 }

 /* Callout banner */
 .ftfr-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;
 }

 .ftfr-vf-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 15px;
 }

 .ftfr-vf-desc {
     color: #64748b;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 0;
 }

 /* How Capital Tab Helps Section */
 .ftfr-services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
     gap: 14px;
     margin-top: 10px;
 }

 .ftfr-service-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 12px;
     padding: 14px 18px;
     transition: all 0.25s ease;
     font-size: 0.9rem;
     font-weight: 500;
     color: #334155;
 }

 .ftfr-service-item:hover {
     border-color: rgba(33, 216, 145, 0.4);
     box-shadow: 0 6px 20px rgba(33, 216, 145, 0.06);
     transform: translateX(4px);
 }

 .ftfr-service-item i {
     color: #21D891;
     font-size: 1rem;
     margin-top: 2px;
     flex-shrink: 0;
 }

 /* Closing Callout Dark Card */
 .ftfr-closing-card {
     background: linear-gradient(135deg, #0b1528 0%, #111e36 100%);
     border-radius: 24px;
     padding: 50px 45px;
     color: #ffffff;
     position: relative;

     height: 100%;
 }

 .ftfr-closing-card::before {
     content: '';
     position: absolute;
     top: -30%;
     right: -20%;
     width: 350px;
     height: 350px;
     background: radial-gradient(circle, rgba(33, 216, 145, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .ftfr-closing-card::after {
     content: '';
     position: absolute;
     bottom: -20%;
     left: -10%;
     width: 250px;
     height: 250px;
     background: radial-gradient(circle, rgba(9, 136, 255, 0.1) 0%, transparent 70%);
     pointer-events: none;
 }

 .ftfr-closing-label {
     color: #21D891;
     font-size: 0.78rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     display: block;
     margin-bottom: 18px;
 }

 .ftfr-closing-title {
     font-family: 'Outfit', sans-serif;
     font-size: 1.8rem;
     font-weight: 800;
     line-height: 1.25;
     color: #ffffff;
     margin-bottom: 20px;
 }

 .ftfr-closing-title span {
     background: linear-gradient(to right, #21D891, #0988FF);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .ftfr-closing-desc {
     color: #94a3b8;
     font-size: 0.95rem;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .ftfr-closing-quote {
     background: rgba(255, 255, 255, 0.04);
     border-left: 3px solid #21D891;
     border-radius: 0 10px 10px 0;
     padding: 18px 20px;
     margin-bottom: 30px;
     color: #e2e8f0;
     font-size: 0.95rem;
     font-style: italic;
     line-height: 1.6;
 }

 .ftfr-closing-btn {
     background: #21D891;
     color: #ffffff;
     font-weight: 700;
     padding: 14px 32px;
     border-radius: 10px;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
     border: 1px solid #21D891;
     box-shadow: 0 4px 16px rgba(33, 216, 145, 0.3);
     position: relative;
     z-index: 1;
 }

 .ftfr-closing-btn:hover {
     background: #1bb77b;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(33, 216, 145, 0.4);
 }