/* ============================================================
   KICKSTARTER CAMPAIGN PROMOTION SPECIFIC STYLES
   Colors:
   - Kickstarter Green: #24B47E
   - Primary Green: #229D78
   - Secondary Blue: #1B337B
   - Accent Yellow: #F8B430
   - Accent Strategy Magenta: #E52E71
   ============================================================ */

.ks-page-root {
    position: relative;
    overflow: hidden;
    background-color: #fafbfc;
}

/* ---------- Aurora Background Blobs ---------- */
.ks-aurora-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.ks-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.08;
    animation: ksBlobMove 22s infinite alternate ease-in-out;
}
.ks-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #24B47E 0%, transparent 70%);
    top: -100px; right: -50px;
}
.ks-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1B337B 0%, transparent 70%);
    top: 25%; left: -100px;
    animation-delay: -6s;
}
.ks-blob-3 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, #F8B430 0%, transparent 70%);
    bottom: 15%; right: -50px;
    animation-delay: -12s;
}
@keyframes ksBlobMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 50px) scale(1.15); }
}

/* ---------- Hero Section ---------- */
.ks-hero {
    position: relative;
    padding: 200px 0 140px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(27, 51, 123, 0.92) 100%), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
}
.ks-hero-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #24B47E;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}
.ks-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 850px;
}
.ks-hero-title span.highlight {
    color: #24B47E;
}
.ks-hero-underline {
    display: block;
    width: 120px;
    height: 4px;
    background: #24B47E;
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}
.ks-hero-underline::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #24B47E;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #24B47E;
}
.ks-hero-desc {
    font-family: var(--font-premium);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
}
.ks-hero-btn {
    background: linear-gradient(135deg, #24B47E 0%, #1c8c61 100%) !important;
    border-color: #24B47E !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 40px !important;
    box-shadow: 0 8px 25px rgba(36, 180, 126, 0.25) !important;
}
.ks-hero-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(36, 180, 126, 0.45) !important;
}

/* ---------- Partners Bar ---------- */
.ks-partners-bar {
    position: relative;
    z-index: 3;
    background: #ffffff;
    padding: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid #f1f5f9;
}
.ks-partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.ks-partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.ks-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(36, 180, 126, 0.15);
    border-color: rgba(36, 180, 126, 0.3);
}
.ks-partner-logo {
    max-height: 36px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}
.ks-partner-card:hover .ks-partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---------- Feature Content Sections ---------- */
.ks-feature-sec {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}
.ks-watermark-bg {
    position: relative;
}
.ks-watermark-text {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(27, 51, 123, 0.03);
    pointer-events: none;
    z-index: 1;
}
.ks-sec-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #1B337B;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 25px;
}
.ks-sec-desc {
    font-family: var(--font-premium);
    font-size: 16px;
    color: #556987;
    line-height: 1.7;
    margin-bottom: 25px;
}
.ks-sec-desc-lead {
    font-size: 18px;
    font-weight: 600;
    color: #1B337B;
}
.ks-sec-btn {
    background: linear-gradient(135deg, #24B47E 0%, #1c8c61 100%) !important;
    border-color: #24B47E !important;
    color: #fff !important;
}
.ks-sec-btn:hover {
    box-shadow: 0 12px 25px rgba(36, 180, 126, 0.3);
}

/* ---------- Dynamic GIF Mockup Wrapper ---------- */
.ks-illustration-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.ks-illustration-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 180, 126, 0.08) 0%, rgba(27, 51, 123, 0.05) 100%);
    border-radius: 40px;
    transform: rotate(3deg);
    z-index: 1;
    transition: all 0.4s ease;
}
.ks-illustration-wrapper:hover .ks-illustration-backdrop {
    transform: rotate(-3deg) scale(1.02);
}
.ks-illustration-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(27, 51, 123, 0.12);
    transition: all 0.4s ease;
}
.ks-illustration-wrapper:hover .ks-illustration-img {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -12px rgba(36, 180, 126, 0.2);
}
.ks-floating-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #24B47E 0%, #1c8c61 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(36, 180, 126, 0.25);
    animation: ksFloat 3s infinite alternate ease-in-out;
}
@keyframes ksFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ---------- Vision (Global Recognition Blue Band) ---------- */
.ks-vision-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1B337B 0%, #0F1D43 100%);
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}
.ks-vision-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(36, 180, 126, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
.ks-vision-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}
.ks-vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.ks-vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 180, 126, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}
.ks-vision-card:hover::before {
    opacity: 1;
}
.ks-vision-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(36, 180, 126, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.ks-vision-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 180, 126, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #24B47E;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.ks-vision-card:hover .ks-vision-card-icon {
    background: #24B47E;
    color: #fff;
    box-shadow: 0 8px 20px rgba(36, 180, 126, 0.4);
    transform: scale(1.1);
}
.ks-vision-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.ks-vision-card-desc {
    font-family: var(--font-premium);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ---------- Method Item Cards ---------- */
.ks-method-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ks-method-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.ks-method-item.active {
    border-color: #24B47E;
    box-shadow: 0 10px 30px rgba(36, 180, 126, 0.08);
    transform: translateX(8px);
}
.ks-method-item.active[data-wedge="strategy"] {
    border-color: #E52E71;
    box-shadow: 0 10px 30px rgba(229, 46, 113, 0.08);
}
.ks-method-item.active[data-wedge="creativity"] {
    border-color: #F8B430;
    box-shadow: 0 10px 30px rgba(248, 180, 48, 0.08);
}
.ks-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.ks-method-icon.m-strategy {
    background: rgba(229, 46, 113, 0.08);
    color: #E52E71;
}
.ks-method-icon.m-creativity {
    background: rgba(248, 180, 48, 0.08);
    color: #F8B430;
}
.ks-method-icon.m-technicality {
    background: rgba(34, 157, 120, 0.08);
    color: #229D78;
}
.ks-method-item.active .ks-method-icon.m-strategy {
    background: #E52E71;
    color: #fff;
}
.ks-method-item.active .ks-method-icon.m-creativity {
    background: #F8B430;
    color: #fff;
}
.ks-method-item.active .ks-method-icon.m-technicality {
    background: #229D78;
    color: #fff;
}
.ks-method-text h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: #1B337B;
    margin-bottom: 6px;
}
.ks-method-text p {
    font-family: var(--font-premium);
    font-size: 14.5px;
    color: #556987;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ---------- Custom Interactive SVG Pie Chart ---------- */
.ks-pie-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}
.ks-pie-svg {
    width: 100%;
    height: 100%;
}
.ks-pie-wedge {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: 100px 100px;
    cursor: pointer;
}
.ks-pie-wedge:hover {
    transform: scale(1.06);
    filter: drop-shadow(0px 12px 20px rgba(27, 51, 123, 0.25));
}
.ks-pie-wedge.highlighted {
    transform: scale(1.06);
    filter: drop-shadow(0px 12px 20px rgba(27, 51, 123, 0.25));
}

/* ---------- Pricing Plans & Matrix ---------- */
.ks-plans-section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background-color: #ffffff;
}
.ks-plans-intro {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ks-plans-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #24B47E;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}
.ks-plans-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #1B337B;
    letter-spacing: -1px;
    line-height: 1.15;
}
.ks-plan-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.ks-plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 180, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #24B47E;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.ks-plan-card:hover .ks-plan-icon {
    background: #24B47E;
    color: #fff;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(36, 180, 126, 0.3);
}
.ks-plan-card.featured {
    border-color: #24B47E;
    border-width: 2px;
    box-shadow: 0 20px 40px rgba(36, 180, 126, 0.12);
}
.ks-plan-card.featured .ks-plan-icon {
    background: #24B47E;
    color: #fff;
    box-shadow: 0 8px 20px rgba(36, 180, 126, 0.2);
}
.ks-plan-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: #24B47E;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(36, 180, 126, 0.3);
}
.ks-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(27, 51, 123, 0.08);
    border-color: rgba(36, 180, 126, 0.4);
}
.ks-plan-card.featured:hover {
    box-shadow: 0 25px 50px rgba(36, 180, 126, 0.22);
}
.ks-plan-duration {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: #1B337B;
    margin-bottom: 12px;
}
.ks-plan-desc {
    font-family: var(--font-premium);
    font-size: 14px;
    color: #667085;
    margin-bottom: 30px;
    line-height: 1.6;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ks-plan-btn {
    width: 100%;
    background: #1B337B;
    color: #fff !important;
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}
.ks-plan-card.featured .ks-plan-btn {
    background: linear-gradient(135deg, #24B47E 0%, #1c8c61 100%);
    box-shadow: 0 8px 20px rgba(36, 180, 126, 0.2);
}
.ks-plan-card.featured .ks-plan-btn:hover {
    box-shadow: 0 12px 25px rgba(36, 180, 126, 0.4);
}
.ks-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 51, 123, 0.2);
    background: #15275d;
}

/* Plan Matrix Table */
.ks-matrix-wrapper {
    margin-top: 80px;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}
.ks-matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.ks-matrix-table th,
.ks-matrix-table td {
    padding: 20px 30px;
    font-family: var(--font-premium);
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.ks-matrix-table th {
    background: #fafbfc;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #1B337B;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.ks-matrix-table tr:last-child td {
    border-bottom: none;
}
.ks-matrix-table tr:hover td {
    background: rgba(36, 180, 126, 0.02);
}
.ks-matrix-feature-name {
    font-weight: 700;
    color: #1B337B;
    width: 40%;
}
.ks-matrix-val {
    text-align: center;
    color: #556987;
    font-weight: 600;
    width: 20%;
}
.ks-matrix-val i.fa-circle-check {
    color: #24B47E;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(36,180,126,0.2));
}
.ks-matrix-val i.fa-circle-xmark {
    color: #ef4444;
    font-size: 20px;
    opacity: 0.3;
}

/* ---------- Testimonial Portrait Section ---------- */
.ks-testimonial-section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    background-color: #f8fafc;
    overflow: hidden;
}
.ks-testimonial-section::before {
    content: '';
    position: absolute;
    bottom: -10%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34, 157, 120, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}
.ks-testi-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 40px;
}
.ks-testi-quote-icon {
    font-size: 4rem;
    color: #24B47E;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}
.ks-testi-quote {
    font-family: var(--font-premium);
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B337B;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 30px;
}
.ks-testi-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ks-testi-author-bar {
    width: 40px;
    height: 3px;
    background: #24B47E;
}
.ks-testi-author {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #1B337B;
    display: block;
}
.ks-testi-role {
    font-family: var(--font-premium);
    font-size: 14px;
    color: #667085;
}
.ks-testi-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ks-testi-img-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 180, 126, 0.1) 0%, rgba(27, 51, 123, 0.05) 100%);
    border-radius: 32px;
    transform: rotate(-3deg);
    z-index: 1;
}
.ks-testi-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: 420px;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(27, 51, 123, 0.15);
    object-fit: cover;
    transition: all 0.4s ease;
}
.ks-testi-img-wrap:hover .ks-testi-img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(36, 180, 126, 0.25);
}

/* ---------- FAQs Section ---------- */
.ks-faq-sec {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background-color: #ffffff;
}
.ks-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}
.ks-faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ks-faq-item:hover {
    border-color: rgba(36, 180, 126, 0.3);
    box-shadow: 0 10px 25px rgba(27, 51, 123, 0.02);
}
.ks-faq-item.active {
    border-color: #24B47E;
    box-shadow: 0 15px 35px rgba(36, 180, 126, 0.08);
}
.ks-faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #1B337B;
    user-select: none;
    transition: all 0.3s ease;
}
.ks-faq-header:hover {
    color: #24B47E;
}
.ks-faq-icon {
    font-size: 15px;
    color: #1B337B;
    transition: transform 0.3s ease;
}
.ks-faq-item.active .ks-faq-icon {
    transform: rotate(180deg);
    color: #24B47E;
}
.ks-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ks-faq-content {
    padding: 0 30px 24px;
    font-family: var(--font-premium);
    font-size: 14.5px;
    color: #556987;
    line-height: 1.6;
}

/* ---------- Start-up Contact Section ---------- */
.ks-startup-sec {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    background-color: #fafbfc;
}
.ks-contact-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #24B47E;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}
.ks-contact-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #1B337B;
    line-height: 1.2;
    margin-bottom: 25px;
}
.ks-contact-desc {
    font-family: var(--font-premium);
    font-size: 15.5px;
    color: #556987;
    line-height: 1.6;
    margin-bottom: 40px;
}
.ks-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.ks-contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.ks-contact-info-item:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 180, 126, 0.3);
    box-shadow: 0 10px 25px rgba(36, 180, 126, 0.08);
}
.ks-contact-info-icon {
    width: 55px; height: 55px;
    border-radius: 16px;
    background: rgba(36, 180, 126, 0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #24B47E;
    transition: all 0.3s ease;
}
.ks-contact-info-item:hover .ks-contact-info-icon {
    background: #24B47E;
    color: #ffffff;
    transform: scale(1.05);
}
.ks-contact-info-text {
    display: flex;
    flex-direction: column;
}
.ks-contact-info-label {
    font-family: var(--font-premium);
    font-size: 12px; color: #667085;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.ks-contact-info-val {
    font-family: var(--font-heading);
    font-weight: 800; font-size: 1.15rem;
    color: #1B337B;
}

/* Contact Form Container */
.ks-form-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(27, 51, 123, 0.05);
    border: 1px solid #f1f5f9;
}
.ks-form-group {
    margin-bottom: 24px;
}
.ks-form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #1B337B;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ks-form-input {
    width: 100%;
    background: #fafbfc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 20px;
    font-family: var(--font-premium);
    font-size: 14.5px;
    color: #333;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ks-form-input::placeholder {
    color: #a0aec0;
}
.ks-form-input:focus {
    border-color: #24B47E;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(36, 180, 126, 0.12);
}
.ks-submit-btn {
    background: linear-gradient(135deg, #24B47E 0%, #1c8c61 100%) !important;
    border-color: #24B47E !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 16px 30px !important;
    box-shadow: 0 8px 20px rgba(36, 180, 126, 0.2) !important;
    transition: all 0.3s ease !important;
}
.ks-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(36, 180, 126, 0.4) !important;
}

/* ---------- Delays ---------- */
.ks-delay-1 { transition-delay: 0.1s; }
.ks-delay-2 { transition-delay: 0.2s; }
.ks-delay-3 { transition-delay: 0.3s; }
.ks-delay-4 { transition-delay: 0.4s; }
.pkg-delay-2 { transition-delay: 0.15s; }
.pkg-delay-4 { transition-delay: 0.3s; }
.pkg-delay-6 { transition-delay: 0.5s; }

/* Utility structural classes to decouple inline styles */
.ks-z-index-2 {
    position: relative;
    z-index: 2;
}
.ks-submit-btn-center {
    justify-content: center;
}

/* Toast Notification Styles */
#ks-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #1B337B;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 28px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(36, 180, 126, 0.25);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 360px;
    border-left: 4px solid #24B47E;
    pointer-events: none;
}
#ks-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .ks-plans-intro { text-align: center; margin-bottom: 40px; }
    .ks-testi-box { padding-right: 0; text-align: center; }
    .ks-testi-author-meta { justify-content: center; }
}
@media (max-width: 991.98px) {
    .ks-hero { padding: 160px 0 100px; }
    .ks-hero-title { font-size: 3rem; }
    .ks-sec-title, .ks-plans-title, .ks-contact-title, .ks-vision-title { font-size: 2.2rem; }
    .ks-watermark-text { font-size: 7rem; }
    .ks-form-wrapper { padding: 35px; }
    .ks-illustration-wrapper { margin-top: 40px; }
    .ks-pie-container { width: 300px; height: 300px; margin-top: 40px; }
}
@media (max-width: 575.98px) {
    .ks-hero-title { font-size: 2.4rem; }
    .ks-hero-desc { font-size: 15px; }
    .ks-sec-title, .ks-plans-title, .ks-contact-title, .ks-vision-title { font-size: 1.8rem; }
    .ks-partner-grid { gap: 20px; }
    .ks-partner-card { min-height: 60px; padding: 10px 15px; }
}
