/* Container & Spacing */
.investment-services-section {
    background: #f8fafc; /* Light Theme */
    padding: 80px 5%;
    overflow: hidden;
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading Design */
.main-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto 60px auto;
    border-radius: 2px;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Styling */
.description,
.sub-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

/* Glassmorphism Feature Card */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

.highlight-text {
    font-size: 1.2rem;
    color: #334155;
    font-weight: 500;
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 1.8rem;
    }
}
/* Container & Spacing */
.benefits-section {
    background: #ffffff;
    padding: 80px 5%;
}

.section-title {
    font-size: 1.5rem;
    color: #0f172a;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Grid layout for cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Benefit Card Wrapper */
.benefit-item {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Hexagon Style */
.hex-icon {
    width: 55px;
    height: 50px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Text Content Styling */
.content-box {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    padding: 10px 15px;
}

/* Footer Section */
.footer-note {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    padding: 20px;
    background: #0f172a;
    color: #f1f5f9;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Colors */
.bg-blue {
    background: #3b82f6;
}
.bg-orange {
    background: #f97316;
}
.bg-green {
    background: #22c55e;
}
.bg-yellow {
    background: #eab308;
}
.bg-purple {
    background: #a855f7;
}
.bg-red {
    background: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   Telegram Investment Section
================================= */

.telegram-investment-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(6, 16, 35, 0.92), rgba(6, 16, 35, 0.95)),
        url("../images/telegram-bot/crypto-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* Floating Glow */
.telegram-investment-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 183, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    filter: blur(40px);
}

.telegram-investment-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 170, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(40px);
}

/* Heading */

.telegram-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(0, 183, 255, 0.12);
    border: 1px solid rgba(0, 183, 255, 0.3);
    color: #00b7ff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.telegram-title {
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 18px;
}

.telegram-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    max-width: 850px;
    margin: auto;
}

/* Cards */

.telegram-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.45s ease;
    overflow: hidden;
    z-index: 1;
}

.telegram-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 183, 255, 0.12),
        rgba(0, 255, 170, 0.05)
    );
    opacity: 0;
    transition: 0.45s ease;
    z-index: -1;
}

.telegram-card:hover::before {
    opacity: 1;
}

.telegram-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 183, 255, 0.35);
    box-shadow: 0 18px 45px rgba(0, 183, 255, 0.12);
}

/* Icon */

.telegram-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b7ff, #00e1a1);
    margin-bottom: 25px;
    transition: 0.45s ease;
}

.telegram-icon i {
    font-size: 30px;
    color: #ffffff;
}

.telegram-card:hover .telegram-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Text */

.telegram-card h3 {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 16px;
}

.telegram-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15.5px;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .telegram-title {
        font-size: 34px;
    }

    .telegram-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .telegram-investment-section {
        padding: 80px 0;
    }

    .telegram-title {
        font-size: 28px;
    }

    .telegram-subtitle {
        font-size: 15px;
        line-height: 1.8;
    }

    .telegram-card h3 {
        font-size: 21px;
    }
}

/* ===================================
   Telegram Features Section
=================================== */

.telegram-features-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #f4f9ff 0%, #edf5ff 100%);
    overflow: hidden;
}

.telegram-features-section .container {
    max-width: 1320px;
}

/* Row */

.section-row {
    align-items: flex-start !important;
}

/* =========================
   LEFT CONTENT
========================= */

.features-left-content {
    position: sticky;
    top: 30px;
    padding-right: 25px;
    margin-top: -8px;
}

/* Tag */

.features-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 132, 255, 0.08);
    color: #0077ff;
    border: 1px solid rgba(0, 119, 255, 0.18);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}

/* Title */

.features-title {
    font-size: 44px;
    line-height: 1.28;
    color: #111827;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Description */

.features-description {
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 28px;
}

/* Bottom Box */

.features-bottom-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e7edf6;
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    margin-bottom: 30px;
}

.bottom-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-icon i {
    color: #ffffff;
    font-size: 24px;
}

.bottom-content h4 {
    font-size: 20px;
    color: #111827;
    font-weight: 600;
    margin-bottom: 10px;
}

.bottom-content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* LEFT IMAGE */

.left-image-box {
    margin-top: 10px;
}

.left-image-box img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.45s ease;
}

.left-image-box img:hover {
    transform: translateY(-8px);
}

/* =========================
   FEATURE CARDS
========================= */

.feature-card {
    position: relative;
    border-radius: 24px;
    transition: 0.45s ease;
    overflow: hidden;
    height: 100%;
    min-height: 230px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* Different Colors */

.feature-card-one {
    background: linear-gradient(135deg, #d9ecff, #b9d8ff);
    padding: 34px 26px;
}

.feature-card-two {
    background: linear-gradient(135deg, #e6deff, #d2c4ff);
    padding: 40px 28px;
    margin-top: 12px;
}

.feature-card-three {
    background: linear-gradient(135deg, #d9ffe7, #b7f1cf);
    padding: 36px 28px;
}

.feature-card-four {
    background: linear-gradient(135deg, #ffd9f4, #f4b8ea);
    padding: 38px 26px;
}

.feature-card-five {
    background: linear-gradient(135deg, #ffe8d1, #ffd1aa);
    padding: 42px 30px;
}

.feature-card-six {
    background: linear-gradient(135deg, #d7fff6, #b5efe4);
    padding: 34px 26px;
    margin-top: 10px;
}

.feature-card-seven {
    background: linear-gradient(135deg, #ead9ff, #d4bbff);
    padding: 38px 28px;
}

.feature-card-eight {
    background: linear-gradient(135deg, #ffe2d8, #f6c7b7);
    padding: 34px 26px;
}

/* Icon */

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: 0.4s ease;
}

.feature-icon i {
    color: #1f2937;
    font-size: 26px;
}

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Text */

.feature-card h3 {
    color: #111827;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 14px;
}

.feature-card p {
    color: #374151;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .features-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .telegram-features-section {
        padding: 70px 0;
    }

    .features-left-content {
        position: relative;
        top: 0;
        padding-right: 0;
        margin-bottom: 45px;
    }

    .features-title {
        font-size: 32px;
    }

    .feature-card {
        min-height: auto;
    }

    .feature-card-two,
    .feature-card-six {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .telegram-features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 28px;
    }

    .features-description {
        font-size: 15px;
    }

    .feature-card {
        padding: 30px 22px !important;
        margin-top: 0 !important;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .bottom-content h4 {
        font-size: 18px;
    }
}

/* ===================================
   ROI Investment Features
=================================== */

.roi-investment-features {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    overflow: hidden;
}

.roi-investment-features .container {
    max-width: 1320px;
}

/* Heading */

.roi-heading {
    margin-bottom: 70px;
}

.roi-small-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(0, 132, 255, 0.08);
    border: 1px solid rgba(0, 132, 255, 0.15);
    color: #0077ff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.roi-main-title {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    font-weight: 600;
    margin-bottom: 18px;
}

.roi-main-description {
    max-width: 760px;
    margin: auto;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

/* Layout */

.roi-feature-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Columns */

.roi-column-left,
.roi-column-right {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Center */

.roi-center-content {
    width: 28%;
}

.center-content-box {
    position: relative;
    padding: 70px 40px;
    border-radius: 34px;
    background: linear-gradient(145deg, #111827, #1e293b);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.center-content-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.center-icon {
    width: 90px;
    height: 90px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
}

.center-icon i {
    color: #ffffff;
    font-size: 36px;
}

.center-content-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 0;
}

/* Feature Cards */

.roi-feature-box {
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 28px;
    padding: 32px 28px;
    transition: 0.45s ease;
    overflow: hidden;
    min-height: 140px;
}

.roi-feature-box:hover {
    transform: translateY(-8px);
}

/* Different Colors */

.box-one {
    background: linear-gradient(135deg, #d9ecff, #bdd9ff);
}

.box-two {
    background: linear-gradient(135deg, #ece2ff, #d7c6ff);
    margin-left: 25px;
}

.box-three {
    background: linear-gradient(135deg, #d9ffe8, #b9f2d0);
}

.box-four {
    background: linear-gradient(135deg, #ffe1f2, #f5bee6);
}

.box-five {
    background: linear-gradient(135deg, #ffe9d8, #ffd4b3);
    margin-right: 25px;
}

.box-six {
    background: linear-gradient(135deg, #d8fff6, #b8f0e4);
}

/* Icon */

.roi-box-icon {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-box-icon i {
    color: #111827;
    font-size: 28px;
}

/* Text */

.roi-feature-box h3 {
    color: #111827;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1199px) {
    .roi-main-title {
        font-size: 42px;
    }

    .roi-feature-box h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .roi-investment-features {
        padding: 80px 0;
    }

    .roi-feature-layout {
        flex-direction: column;
    }

    .roi-column-left,
    .roi-column-right,
    .roi-center-content {
        width: 100%;
    }

    .box-two,
    .box-five {
        margin: 0;
    }

    .center-content-box {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .roi-investment-features {
        padding: 60px 0;
    }

    .roi-heading {
        margin-bottom: 45px;
    }

    .roi-main-title {
        font-size: 30px;
    }

    .roi-feature-box {
        padding: 26px 22px;
        min-height: auto;
    }

    .roi-feature-box h3 {
        font-size: 18px;
    }

    .center-content-box {
        padding: 45px 24px;
    }
}
/* ===================================
   Payment Gateway & Crypto Integration
   Soft Light Theme
=================================== */

.crypto-payment-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.crypto-payment-section .container {
    max-width: 1320px;
}

/* Heading */

.payment-heading {
    margin-bottom: 65px;
}

.payment-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(0, 132, 255, 0.08);
    border: 1px solid rgba(0, 132, 255, 0.15);
    color: #0077ff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.payment-title {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0;
}

.payment-description {
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 30px;
}

/* Grid */

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Cards */

.payment-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.45s ease;
    min-height: 240px;
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.payment-card:hover {
    transform: translateY(-8px);
}

/* Soft Dual Color Combination */

.payment-card-one {
    background: linear-gradient(135deg, #f4f8ff, #e8f1ff);
}

.payment-card-two {
    background: linear-gradient(135deg, #f7f5ff, #eee9ff);
    margin-top: 25px;
}

.payment-card-three {
    background: linear-gradient(135deg, #f4fffb, #e7fff5);
}

.payment-card-four {
    background: linear-gradient(135deg, #fff7fb, #ffeef7);
    margin-top: 5px;
}

.payment-card-five {
    background: linear-gradient(135deg, #fffaf5, #fff1e4);
}

.payment-card-six {
    background: linear-gradient(135deg, #f5ffff, #e8fbfb);
    margin-top: 20px;
}

/* Soft Glow */

.payment-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    top: -80px;
    right: -70px;
}

/* Icon */

.payment-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

.payment-icon i {
    color: #111827;
    font-size: 30px;
}

/* Text */

.payment-content {
    position: relative;
    z-index: 2;
}

.payment-content h3 {
    color: #111827;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

/* Bottom Box */

.payment-bottom-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #f4f8ff, #edf4ff);
    border: 1px solid #dbe8ff;
    border-radius: 34px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.bottom-box-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-box-icon i {
    color: #2563eb;
    font-size: 28px;
}

.payment-bottom-box p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1199px) {
    .payment-title {
        font-size: 42px;
    }

    .payment-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .crypto-payment-section {
        padding: 80px 0;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-description {
        padding-left: 0;
        margin-top: 20px;
    }

    .payment-card-two,
    .payment-card-four,
    .payment-card-six {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .crypto-payment-section {
        padding: 60px 0;
    }

    .payment-heading {
        margin-bottom: 45px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .payment-title {
        font-size: 30px;
    }

    .payment-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .payment-content h3 {
        font-size: 20px;
    }

    .payment-bottom-box {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   Minimal AI Automation Section
=================================== */

.minimal-ai-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.minimal-ai-section .container {
    max-width: 1280px;
}

/* Heading */

.minimal-ai-heading {
    margin-bottom: 75px;
}

.minimal-ai-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(61, 52, 139, 0.08);
    border: 1px solid rgba(61, 52, 139, 0.12);
    color: #3d348b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.minimal-ai-title {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    font-weight: 600;
    margin-bottom: 18px;
}

.minimal-ai-description {
    max-width: 760px;
    margin: auto;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

/* Grid */

.minimal-ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 35px 20px;
}

/* Long Circle Cards */

.minimal-ai-card {
    position: relative;
    width: 190px;
    height: 340px;
    border-radius: 120px;
    background: #ffffff;
    transition: 0.45s ease;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 26px;
    text-align: center;
}

.minimal-ai-card:hover {
    transform: translateY(-10px);
}

/* Purple Outline */

.card-purple {
    border: 1.5px solid rgba(61, 52, 139, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}

/* Light Outline */

.card-light {
    border: 1.5px solid rgba(61, 52, 139, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

/* Subtle Glow */

.minimal-ai-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(61, 52, 139, 0.03);
    top: -80px;
    right: -70px;
}

/* Icon */

.minimal-ai-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(61, 52, 139, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: 0.4s ease;
    position: relative;
    z-index: 2;
}

.minimal-ai-icon i {
    color: #3d348b;
    font-size: 30px;
}

.minimal-ai-card:hover .minimal-ai-icon {
    transform: scale(1.08);
}

/* Text */

.minimal-ai-card h3 {
    color: #111827;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Bottom Text */

.minimal-ai-bottom {
    margin-top: 60px;
    text-align: center;
}

.minimal-ai-bottom p {
    color: #5b6472;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    max-width: 850px;
    margin: auto;
}

/* Responsive */

@media (max-width: 1199px) {
    .minimal-ai-title {
        font-size: 42px;
    }

    .minimal-ai-card {
        width: 180px;
        height: 320px;
    }

    .minimal-ai-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .minimal-ai-section {
        padding: 80px 0;
    }

    .minimal-ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .minimal-ai-card {
        width: 170px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .minimal-ai-section {
        padding: 60px 0;
    }

    .minimal-ai-heading {
        margin-bottom: 45px;
    }

    .minimal-ai-title {
        font-size: 30px;
    }

    .minimal-ai-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .minimal-ai-card {
        width: 100%;
        max-width: 240px;
        height: 290px;
        border-radius: 90px;
        padding: 35px 24px;
    }

    .minimal-ai-card h3 {
        font-size: 17px;
    }

    .minimal-ai-bottom {
        margin-top: 40px;
    }

    .minimal-ai-bottom p {
        font-size: 15px;
    }
}

/* ===================================
   Why Telegram Bots Are Highly Demanded
=================================== */

.telegram-demand-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0f1f 0%, #10172d 100%);
    overflow: hidden;
}

.telegram-demand-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(90, 108, 255, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    filter: blur(40px);
}

.telegram-demand-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(61, 52, 139, 0.08);
    border-radius: 50%;
    bottom: -180px;
    left: -140px;
    filter: blur(40px);
}

.telegram-demand-section .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}

/* Left Content */

.telegram-demand-content {
    padding-right: 40px;
}

.telegram-demand-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #b7c2ff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.telegram-demand-title {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 24px;
}

.telegram-demand-description {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 0;
}

/* Grid */

.telegram-demand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Cards */

.telegram-demand-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 35px 30px;
    transition: 0.45s ease;
    overflow: hidden;
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    backdrop-filter: blur(12px);
}

.telegram-demand-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -90px;
    right: -90px;
}

.telegram-demand-card:hover {
    transform: translateY(-10px);
    border-color: rgba(120, 132, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* Alternate Layout */

.telegram-demand-card:nth-child(2),
.telegram-demand-card:nth-child(5) {
    margin-top: 35px;
}

/* Icon */

.telegram-demand-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-demand-icon i {
    color: #ffffff;
    font-size: 30px;
}

/* Text */

.telegram-demand-card h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1199px) {
    .telegram-demand-title {
        font-size: 42px;
    }

    .telegram-demand-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .telegram-demand-section {
        padding: 90px 0;
    }

    .telegram-demand-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .telegram-demand-card:nth-child(2),
    .telegram-demand-card:nth-child(5) {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .telegram-demand-section {
        padding: 70px 0;
    }

    .telegram-demand-title {
        font-size: 32px;
    }

    .telegram-demand-grid {
        grid-template-columns: 1fr;
    }

    .telegram-demand-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .telegram-demand-card h3 {
        font-size: 18px;
    }
}

/* ===================================
   Security Features Section
=================================== */

.security-platform-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fffaf7 0%, #fff4ef 100%);
    overflow: hidden;
}

.security-platform-section .container {
    max-width: 1180px;
}

/* Heading */

.security-heading {
    margin-bottom: 65px;
}

.security-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(240, 113, 103, 0.08);
    border: 1px solid rgba(240, 113, 103, 0.15);
    color: #f07167;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.security-title {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    font-weight: 600;
    margin-bottom: 18px;
}

.security-description {
    max-width: 760px;
    margin: auto;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

/* Top Box */

.security-top-box {
    margin-bottom: 70px;
}

.security-top-content {
    position: relative;
    background: linear-gradient(145deg, #fed9b7, #f07167);
    border-radius: 42px;
    padding: 20px 0px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 60px rgba(240, 113, 103, 0.12);
}

.security-top-content::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -120px;
    right: -120px;
}

.security-top-icon {
    width: 95px;
    height: 95px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 30px;
    position: relative;
    z-index: 2;
}

.security-top-icon i {
    color: #ffffff;
    font-size: 38px;
}

.security-top-content p {
    max-width: 760px;
    margin: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 2;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Listing */

.security-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* List Item */

.security-list-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(240, 113, 103, 0.12);
    transition: 0.4s ease;
}

.security-list-item:hover {
    transform: translateX(10px);
}

/* Number */

.security-number {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 50%;
    background: rgba(240, 113, 103, 0.08);
    border: 1px solid rgba(240, 113, 103, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f07167;
    font-size: 22px;
    font-weight: 600;
}

/* Text */

.security-list-item h3 {
    color: #111827;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .security-platform-section {
        padding: 90px 0;
    }

    .security-top-content {
        padding: 45px 35px;
    }
}

@media (max-width: 767px) {
    .security-platform-section {
        padding: 70px 0;
    }

    .security-heading {
        margin-bottom: 45px;
    }

    .security-title {
        font-size: 30px;
    }

    .security-top-content {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .security-top-content p {
        font-size: 16px;
    }

    .security-list-item {
        gap: 18px;
        padding: 24px 0;
    }

    .security-number {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 18px;
    }

    .security-list-item h3 {
        font-size: 18px;
    }
}

/* ===================================
   Why Choose Digiature Section
=================================== */

.digiature-expertise-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fdff 0%, #eefaff 100%);
    overflow: hidden;
}

.digiature-expertise-section .container {
    max-width: 1280px;
}

/* Heading */

.digiature-heading {
    margin-bottom: 80px;
}

.digiature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(3, 4, 94, 0.06);
    border: 1px solid rgba(3, 4, 94, 0.1);
    color: #03045e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.digiature-title {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    font-weight: 600;
    margin-bottom: 18px;
}

.digiature-description {
    max-width: 850px;
    margin: auto;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

/* Main Layout */

.digiature-main-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 70px;
    align-items: center;
}

/* Left Panel */

.digiature-left-panel {
    position: relative;
}

.digiature-left-inner {
    position: sticky;
    top: 120px;
    background: linear-gradient(145deg, #03045e, #10156d);
    border-radius: 45px;
    min-height: 620px;
    padding: 50px 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.digiature-left-inner::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -120px;
    right: -120px;
}

.digiature-main-icon {
    width: 110px;
    height: 110px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.digiature-main-icon i {
    color: #caf0f8;
    font-size: 42px;
}

.digiature-left-inner h3 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.7;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Right Features */

.digiature-features-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Feature Item */

.digiature-feature-item {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 32px 38px;

    display: flex;
    align-items: center;
    gap: 26px;

    transition: 0.45s ease;

    border: 1px solid rgba(3, 4, 94, 0.06);

    box-shadow: 0 12px 35px rgba(3, 4, 94, 0.04);
}

.digiature-feature-item:hover {
    transform: translateY(-8px);
}

/* Floating Alignment */

.item-one {
    width: 82%;
}

.item-two {
    width: 92%;
    margin-left: auto;
}

.item-three {
    width: 78%;
}

.item-four {
    width: 95%;
    margin-left: auto;
}

.item-five {
    width: 84%;
}

.item-six {
    width: 90%;
    margin-left: auto;
}

/* Number */

.digiature-feature-item span {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #caf0f8;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #03045e;
    font-size: 22px;
    font-weight: 600;
}

/* Text */

.digiature-feature-item p {
    color: #111827;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1199px) {
    .digiature-title {
        font-size: 42px;
    }

    .digiature-feature-item p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .digiature-expertise-section {
        padding: 90px 0;
    }

    .digiature-main-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .digiature-left-inner {
        min-height: auto;
        position: relative;
        top: 0;
        padding: 70px 30px;
    }

    .item-one,
    .item-two,
    .item-three,
    .item-four,
    .item-five,
    .item-six {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .digiature-expertise-section {
        padding: 70px 0;
    }

    .digiature-heading {
        margin-bottom: 45px;
    }

    .digiature-title {
        font-size: 30px;
    }

    .digiature-left-inner {
        border-radius: 30px;
        padding: 50px 24px;
    }

    .digiature-left-inner h3 {
        font-size: 24px;
    }

    .digiature-feature-item {
        padding: 24px 20px;
        gap: 18px;
        align-items: flex-start;
    }

    .digiature-feature-item span {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 18px;
    }

    .digiature-feature-item p {
        font-size: 18px;
    }
}

/* ===================================
   Future Automation Section
=================================== */

.future-automation-section {
    position: relative;
    padding: 80px 0;
    background: #e1e5f2;
    overflow: hidden;
}

.future-automation-section .container {
    max-width: 1280px;
    position: relative;
}

/* Top Area */

.future-top-area {
    margin-bottom: 90px;
}

.future-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(2, 43, 58, 0.06);
    border: 1px solid rgba(2, 43, 58, 0.08);
    color: #022b3a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.future-title {
    font-size: 48px;
    line-height: 1.3;
    color: #022b3a;
    font-weight: 600;
    margin-bottom: 20px;
}

.future-description {
    max-width: 820px;
    margin: auto;
    color: rgba(2, 43, 58, 0.72);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

/* Main Timeline Layout */

.future-main-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Center Line */

.future-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(2, 43, 58, 0.1);
}

/* Item */

.future-item {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Left */

.left-item {
    padding-right: 70px;
}

/* Right */

.right-item {
    margin-left: auto;
    padding-left: 70px;
    flex-direction: row-reverse;
}

/* Number */

.future-number {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 50%;
    background: #022b3a;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;

    position: relative;
    z-index: 3;

    box-shadow: 0 15px 35px rgba(2, 43, 58, 0.12);
}

/* Content */

.future-content-box {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 43, 58, 0.06);
    border-radius: 28px;
    padding: 30px 35px;
    width: 100%;
    transition: 0.4s ease;
}

.future-content-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
}

/* Text */

.future-content-box h3 {
    color: #022b3a;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

/* Bottom */

.future-bottom-text {
    margin-top: 90px;
    text-align: center;
}

.future-bottom-text p {
    max-width: 920px;
    margin: auto;
    color: rgba(2, 43, 58, 0.75);
    font-size: 18px;
    line-height: 2;
    font-weight: 400;
}

/* Responsive */

@media (max-width: 1199px) {
    .future-title {
        font-size: 42px;
    }

    .future-content-box h3 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .future-automation-section {
        padding: 90px 0;
    }

    .future-line {
        left: 38px;
    }

    .future-item,
    .left-item,
    .right-item {
        width: 100%;
        padding-left: 95px;
        padding-right: 0;
        margin-left: 0;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .future-automation-section {
        padding: 70px 0;
    }

    .future-top-area {
        margin-bottom: 55px;
    }

    .future-title {
        font-size: 30px;
    }

    .future-main-wrapper {
        gap: 30px;
    }

    .future-line {
        left: 28px;
    }

    .future-item,
    .left-item,
    .right-item {
        padding-left: 72px;
        gap: 16px;
    }

    .future-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 18px;
    }

    .future-content-box {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .future-content-box h3 {
        font-size: 18px;
    }

    .future-bottom-text {
        margin-top: 55px;
    }

    .future-bottom-text p {
        font-size: 16px;
    }
}

/* ===================================
   Telegram CTA Section
=================================== */

.telegram-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1128 0%, #111936 100%);
    overflow: hidden;
}

/* Waves */

.cta-wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(251, 248, 204, 0.08);
    animation: waveMove 12s linear infinite;
}

/* Wave 1 */

.wave-one {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -180px;
}

/* Wave 2 */

.wave-two {
    width: 950px;
    height: 950px;
    bottom: -420px;
    right: -260px;
    animation-duration: 18s;
}

/* Wave 3 */

.wave-three {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

/* Animation */

@keyframes waveMove {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.08) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.4;
    }
}

/* Container */

.telegram-cta-section .container {
    position: relative;
    z-index: 5;
    max-width: 1180px;
}

/* Main Wrapper */

.telegram-cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 248, 204, 0.08);
    border-radius: 45px;
    padding: 90px 70px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

/* Glow */

.telegram-cta-wrapper::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(251, 248, 204, 0.1) 0%,
        transparent 70%
    );
    top: -180px;
    right: -180px;
}

.telegram-cta-wrapper::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(
        circle,
        rgba(251, 248, 204, 0.08) 0%,
        transparent 70%
    );
    bottom: -180px;
    left: -180px;
}

/* Tag */

.telegram-cta-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 50px;
    background: rgba(251, 248, 204, 0.06);
    border: 1px solid rgba(251, 248, 204, 0.1);
    color: #fbf8cc;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* Title */

.telegram-cta-title {
    color: #ffffff;
    font-size: 56px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* Description */

.telegram-cta-description {
    max-width: 900px;
    margin: auto auto 45px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 2;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Button */

.telegram-cta-btn-wrap {
    position: relative;
    z-index: 2;
}

.telegram-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 34px;
    border-radius: 60px;
    background: #fbf8cc;
    color: #0a1128;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.45s ease;
}

.telegram-cta-btn span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(10, 17, 40, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s ease;
}

.telegram-cta-btn i {
    font-size: 15px;
}

.telegram-cta-btn:hover {
    transform: translateY(-6px);
    color: #0a1128;
}

.telegram-cta-btn:hover span {
    transform: rotate(-45deg);
}

/* Responsive */

@media (max-width: 1199px) {
    .telegram-cta-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .telegram-cta-section {
        padding: 100px 0;
    }

    .telegram-cta-wrapper {
        padding: 70px 45px;
    }

    .telegram-cta-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .telegram-cta-section {
        padding: 75px 0;
    }

    .telegram-cta-wrapper {
        padding: 55px 24px;
        border-radius: 28px;
    }

    .telegram-cta-title {
        font-size: 30px;
    }

    .telegram-cta-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .telegram-cta-btn {
        padding: 16px 24px;
        font-size: 15px;
    }

    .telegram-cta-btn span {
        width: 40px;
        height: 40px;
    }
}

/* FAQ */
/* ===================================
   FAQ Section
=================================== */

.telegram-faq-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #faf7ff 0%, #f4eeff 100%);
    overflow: hidden;
}

.telegram-faq-section .container {
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

/* Background Shapes */

.telegram-faq-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(36, 0, 70, 0.03);
    top: -260px;
    right: -180px;
}

.telegram-faq-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(36, 0, 70, 0.02);
    bottom: -180px;
    left: -160px;
}

/* Heading */

.telegram-faq-heading {
    margin-bottom: 70px;
}

.telegram-faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(36, 0, 70, 0.05);
    border: 1px solid rgba(36, 0, 70, 0.08);
    color: #240046;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.telegram-faq-title {
    font-size: 48px;
    line-height: 1.3;
    color: #240046;
    font-weight: 600;
    margin-bottom: 0;
}

/* FAQ Wrapper */

.telegram-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* FAQ Item */

.telegram-faq-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(36, 0, 70, 0.07);
    border-radius: 28px;
    overflow: hidden;

    transition: 0.4s ease;

    box-shadow: 0 12px 35px rgba(36, 0, 70, 0.04);
}

.telegram-faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 0, 70, 0.12);
    box-shadow: 0 18px 40px rgba(36, 0, 70, 0.07);
}

/* Question */

.telegram-faq-question {
    width: 100%;
    padding: 30px 34px;
    background: transparent;
    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    cursor: pointer;
    text-align: left;
}

/* Question Text */

.telegram-faq-question span {
    color: #240046;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
}

/* Icon */

.telegram-faq-question i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(36, 0, 70, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #240046;
    font-size: 15px;

    transition: 0.4s ease;
}

/* Answer */

.telegram-faq-answer {
    display: none;
    padding: 0 34px 30px;
}

.telegram-faq-answer p {
    margin-bottom: 0;
    color: rgba(36, 0, 70, 0.72);
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    max-width: 92%;
}

/* Active */

.telegram-faq-item.active {
    border-color: rgba(36, 0, 70, 0.14);
}

.telegram-faq-item.active .telegram-faq-question i {
    transform: rotate(45deg);
    background: #240046;
    color: #ffffff;
}

.telegram-faq-item.active .telegram-faq-answer {
    display: block;
}

/* Responsive */

@media (max-width: 991px) {
    .telegram-faq-section {
        padding: 90px 0;
    }

    .telegram-faq-title {
        font-size: 40px;
    }

    .telegram-faq-question span {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .telegram-faq-section {
        padding: 70px 0;
    }

    .telegram-faq-heading {
        margin-bottom: 45px;
    }

    .telegram-faq-title {
        font-size: 30px;
    }

    .telegram-faq-question {
        padding: 24px 20px;
    }

    .telegram-faq-answer {
        padding: 0 20px 24px;
    }

    .telegram-faq-question span {
        font-size: 17px;
    }

    .telegram-faq-answer p {
        font-size: 15px;
        max-width: 100%;
    }

    .telegram-faq-question i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 13px;
    }
}
