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

body {
    font-family: 'Poppins', sans-serif;
    color: #1e1e1e;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.top-bar {
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 15px;
    color: #555;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links a.active {
    color: #e21b2d;
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-top: 4px;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
}

.dropdown-menu a:hover {
    background: #f8f9ff;
    color: #e21b2d;
    padding-left: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #e21b2d;
    color: #fff;
    box-shadow: 0 14px 20px rgba(226, 27, 45, 0.25);
}

.btn-primary:hover {
    background: #c61222;
}

.btn-outline {
    border: 2px solid #e21b2d;
    color: #e21b2d;
    background: transparent;
}

.btn-outline:hover {
    background: #e21b2d;
    color: #fff;
}

.hero {
    padding: 80px 0 60px;
}

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

.hero-copy h1 {
    font-size: clamp(36px, 5vw, 54px);
    text-transform: uppercase;
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-copy p {
    color: #6b6b6b;
    max-width: 380px;
    margin-bottom: 32px;
}

.cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-main-image {
    max-width: min(480px, 100%);
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(24, 53, 88, 0.18));
}

.network {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

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

.network-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.network-image {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.network-copy h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.network-copy p {
    color: #555;
    margin-bottom: 18px;
}

.network-copy strong {
    color: #e21b2d;
    font-weight: 600;
}

.network-copy p strong,
.network-copy p span {
    color: #e21b2d;
    font-weight: 600;
}

.who-we-serve {
    padding: 80px 0;
    background: #fff;
}

.who-we-serve h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1e1e1e;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.serve-column ul {
    list-style: none;
    padding: 0;
}

.serve-column li {
    padding: 12px 0;
    color: #1e1e1e;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
}

.serve-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e21b2d;
    font-size: 20px;
    line-height: 1;
}

.cta-section {
    padding: 60px 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #e21b2d 0%, #c61222 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #fff;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #fff;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: #e21b2d;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: #f5f5f5;
    color: #c61222;
}

.logo-carousel {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.logo-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,0 Q300,150 600,150 T1200,150 L1200,600 L0,600 Z" fill="%23f0f0f0" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.carousel-arrow {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.carousel-arrow:hover {
    color: #e21b2d;
}

.carousel-track {
    display: flex;
    gap: 32px;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: calc(100% - 100px);
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex-shrink: 0;
    width: 140px;
}

.logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer {
    background: #2c3e50;
    color: #fff;
}

.footer-content {
    padding: 60px 0 40px;
    background: #2c3e50;
}

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

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.footer-address {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e0e0e0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background: #1a252f;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* About Us Page Styles */
.about-hero {
    padding: 60px 0 40px;
    background: #fff;
}

.about-hero h1 {
    font-size: 42px;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.red-line {
    width: 80px;
    height: 4px;
    background: #e21b2d;
    margin-top: 16px;
}

.about-content {
    padding: 60px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: start;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text strong {
    color: #e21b2d;
    font-weight: 600;
}

.about-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clients-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.clients-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1e1e1e;
    position: relative;
    padding-bottom: 16px;
}

.clients-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e21b2d;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.clients-column ul {
    list-style: none;
    padding: 0;
}

.clients-column li {
    padding: 12px 0;
    color: #1e1e1e;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.clients-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e21b2d;
    font-size: 20px;
    line-height: 1;
}

.investors-section {
    padding: 80px 0;
    background: #fff;
}

.investors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.investors-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.investors-text p {
    margin-bottom: 32px;
}

.investors-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.investor-logo-item {
    width: 100%;
    max-width: 120px;
}

.investor-logo-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.investor-logo-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.investor-logo-text {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 1.2;
}

/* Contact Us Page Styles */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    color: #1e1e1e;
    margin-bottom: 32px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
}

.required {
    color: #e21b2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: #f8f9ff;
    color: #1e1e1e;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e21b2d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(226, 27, 45, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.btn-submit {
    margin-top: 8px;
    width: 100%;
    max-width: 200px;
    align-self: center;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.contact-detail-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #e21b2d;
}

.contact-email {
    color: #e21b2d !important;
    font-weight: 500;
}

.contact-email:hover {
    color: #c61222 !important;
}

.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.demo-card {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(18, 43, 76, 0.12);
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
}

.demo-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
    color: #1e1e1e;
    margin-bottom: 20px;
    font-weight: 600;
}

.demo-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 36px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.demo-grid .full-width {
    grid-column: 1 / -1;
}

.demo-notice {
    font-size: 14px;
    color: #888;
    margin-top: 12px;
}

.demo-card .btn-submit {
    max-width: 220px;
}

.fundraising-hero {
    padding: 100px 0 80px;
    background: #fff;
}

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

.fundraising-copy {
    color: #555;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fundraising-copy .intro-text {
    line-height: 1.7;
}

.fundraising-copy .highlight-text {
    color: #e21b2d;
    font-weight: 500;
    line-height: 1.7;
}

.fundraising-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fundraising-graphic {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(24, 53, 88, 0.16));
}

.fundraising-benefits {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.fundraising-benefits h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    color: #1e1e1e;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(18, 43, 76, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #1e1e1e;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

.fundraising-cta {
    padding: 80px 0;
    background: #fff;
}

.fundraising-cta-box {
    background: linear-gradient(135deg, #e21b2d 0%, #c61222 100%);
    color: #fff;
    border-radius: 18px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fundraising-cta-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.fundraising-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nonprofit-hero {
    padding: 100px 0 80px;
    background: #fff;
}

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

.nonprofit-copy h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.nonprofit-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.nonprofit-graphic {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(24, 53, 88, 0.14));
}

.nonprofit-details {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.details-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(18, 43, 76, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-card h3 {
    font-size: 20px;
    color: #1e1e1e;
}

.details-card p {
    color: #555;
    line-height: 1.7;
}

.nonprofit-cta {
    padding: 80px 0;
    background: #fff;
}

.nonprofit-cta-box {
    background: linear-gradient(135deg, #1b8dde 0%, #0169c7 100%);
    color: #fff;
    border-radius: 18px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nonprofit-cta-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.nonprofit-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.innovation-hero {
    padding: 100px 0 80px;
    background: #fff;
}

.innovation-grid,
.sms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.innovation-copy,
.sms-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #555;
    font-size: 17px;
}

.innovation-copy h1,
.sms-copy h1 {
    font-size: 40px;
    color: #1e1e1e;
}

.innovation-graphic,
.sms-graphic {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(24, 53, 88, 0.14));
}

.innovation-features,
.sms-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.sms-details {
    padding: 80px 0;
    background: #fff;
}

.sms-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.sms-details-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.7;
}

.sms-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sms-points li {
    position: relative;
    padding-left: 20px;
}

.sms-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e21b2d;
}

.sms-details-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sms-carousel {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(18, 43, 76, 0.12);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(18, 43, 76, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card h3 {
    font-size: 20px;
    color: #1e1e1e;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

.innovation-cta,
.sms-cta {
    padding: 80px 0;
    background: #fff;
}

.innovation-cta-box,
.sms-cta-box {
    background: linear-gradient(135deg, #5c6cff 0%, #2735d4 100%);
    color: #fff;
    border-radius: 18px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sms-cta-box {
    background: linear-gradient(135deg, #ff4d6d 0%, #e21b2d 100%);
}

.innovation-cta-box h2,
.sms-cta-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.innovation-cta-box p,
.sms-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.omni-explainer {
    padding: 80px 0;
    background: #fff;
}

.omni-explainer h2 {
    font-size: 36px;
    color: #1e1e1e;
}

.section-underline {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: #e21b2d;
    margin: 16px 0 32px;
}

.omni-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

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

    .top-bar {
        position: static;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .carousel-track {
        gap: 20px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .investors-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .investors-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .investor-logo-item {
        max-width: 100px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .btn-submit {
        max-width: 100%;
    }

    .demo-card {
        padding: 28px 20px;
    }

    .demo-subtitle {
        margin-bottom: 28px;
    }

    .demo-grid {
        gap: 16px;
    }

    .demo-card .btn-submit {
        width: 100%;
    }

    .fundraising-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .fundraising-cta-box h2 {
        font-size: 28px;
    }

    .cta-actions {
        width: 100%;
        justify-content: center;
    }

    .nonprofit-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .nonprofit-cta-box h2 {
        font-size: 28px;
    }

    .innovation-cta-box,
    .sms-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .innovation-cta-box h2,
    .sms-cta-box h2 {
        font-size: 28px;
    }

    .section-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .sms-details-grid {
        gap: 32px;
    }
}

