
.paymentGatewaySection {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7f8ff 100%);
    overflow: hidden;
}

.paymentGatewayWrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.paymentGatewayTag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(14, 11, 97, 0.08);
    color: #0d0b61;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.paymentGatewayContent h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

.paymentGatewayContent h2 span {
    color: #0d0b61;
}

.paymentGatewayContent p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.paymentGatewayFeatures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.gatewayFeature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gatewayFeature i {
    color: #0d0b61;
    font-size: 20px;
}

.gatewayFeature span {
    font-weight: 600;
    color: #222;
}

/* Right Side */

.paymentGatewayCards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gatewayCardMain {
    background: linear-gradient(135deg, #0d0b61 0%, #171285 100%);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(13, 11, 97, 0.25);
}

.gatewayCardMain h3 {
    font-size: 28px;
    margin: 18px 0 15px;
}

.gatewayCardMain p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.gatewayMiniCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gatewayMiniCards .gatewayCard {
    background: #fff;
    padding: 28px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

.gatewayMiniCards .gatewayCard:hover {
    transform: translateY(-8px);
}

.gatewayIcon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gatewayMiniCards .gatewayIcon {
    background: rgba(13, 11, 97, 0.08);
}

.gatewayIcon i {
    font-size: 28px;
    color: #0d0b61;
}

.gatewayCardMain .gatewayIcon i {
    color: #fff;
}

.gatewayMiniCards h4 {
    margin-top: 15px;
    font-size: 17px;
    color: #222;
    font-weight: 700;
}

@media (max-width: 991px) {
    .paymentGatewayWrapper {
        grid-template-columns: 1fr;
    }

    .paymentGatewayContent h2 {
        font-size: 36px;
    }

    .paymentGatewayFeatures,
    .gatewayMiniCards {
        grid-template-columns: 1fr;
    }
}

.paymentSolutionsSection {
    padding: 80px 0;
    background: #fff;
}

.sectionHeading {
    max-width: 850px;
    margin: 0 auto 60px;
}

.sectionTag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(13, 11, 97, 0.08);
    color: #0d0b61;
    font-weight: 600;
    margin-bottom: 20px;
}

.sectionHeading h2 {
    font-size: 48px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.sectionHeading h2 span {
    color: #0d0b61;
}

.sectionHeading p {
    color: #666;
    line-height: 1.9;
}

.paymentSolutionsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.paymentSolutionCard {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #edf0f7;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.paymentSolutionCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0d0b61;
    transform: scaleX(0);
    transition: 0.4s;
}

.paymentSolutionCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 11, 97, 0.12);
}

.paymentSolutionCard:hover::before {
    transform: scaleX(1);
}

.solutionIcon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(13, 11, 97, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solutionIcon i {
    font-size: 28px;
    color: #0d0b61;
}

.paymentSolutionCard h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.paymentSolutionCard p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .paymentSolutionsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectionHeading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .paymentSolutionsGrid {
        grid-template-columns: 1fr;
    }
}
.inrGatewaySection {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.inrGatewayWrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gatewayBadge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #dcfce7;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 20px;
}

.inrGatewayContent h2 {
    font-size: 48px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
}

.inrGatewayContent h2 span {
    color: #00a86b;
}

.inrGatewayContent p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 30px;
}

.gatewayMethods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gatewayMethods span {
    background: #fff;
    border: 1px solid #d1fae5;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0f766e;
}

.gatewayServices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.serviceBox {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
}

.serviceBox:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.12);
}

.serviceBox i {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #dcfce7;
    color: #00a86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.serviceBox h4 {
    margin: 0;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

@media (max-width: 991px) {
    .inrGatewayWrapper {
        grid-template-columns: 1fr;
    }

    .inrGatewayContent h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .gatewayServices {
        grid-template-columns: 1fr;
    }
}
.gatewayPartnersSection {
    padding: 80px 0;
    background: hwb(0 95% 3%);
}

.gatewayHeading {
    max-width: 850px;
    margin: 0 auto 60px;
}

.gatewayLabel {
    display: inline-block;
    padding: 10px 20px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gatewayHeading h2 {
    font-size: 48px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gatewayHeading h2 span {
    color: #2563eb;
}

.gatewayHeading p {
    color: #6b7280;
    line-height: 1.9;
    font-size: 16px;
}

.gatewayLogoGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* ==========================
   CARD DESIGN
========================== */

.gatewayLogoCard {
    position: relative;
    background: #fff;
    border: 2px solid;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Top Brand Accent */

.gatewayLogoCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

/* Logo */

.gatewayLogoCard img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Title */

.gatewayLogoCard h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

/* Remove hover effects */

.gatewayLogoCard:hover {
    transform: none;
}

/* ==========================
   RAZORPAY
========================== */

.razorpay {
    border-color: #2b7bff;
    box-shadow: 0 10px 35px rgba(43, 123, 255, 0.1);
}

.razorpay::before {
    background: #2b7bff;
}

/* ==========================
   PHONEPE
========================== */

.phonepe {
    border-color: #5f259f;
    box-shadow: 0 10px 35px rgba(95, 37, 159, 0.1);
}

.phonepe::before {
    background: #5f259f;
}

/* ==========================
   CASHFREE
========================== */

.cashfree {
    border-color: #00b9f1;
    box-shadow: 0 10px 35px rgba(0, 185, 241, 0.1);
}

.cashfree::before {
    background: #00b9f1;
}

/* ==========================
   PAYU
========================== */

.payu {
    border-color: #6cc24a;
    box-shadow: 0 10px 35px rgba(108, 194, 74, 0.1);
}

.payu::before {
    background: #6cc24a;
}

/* ==========================
   CCAVENUE
========================== */

.ccavenue {
    border-color: #f58220;
    box-shadow: 0 10px 35px rgba(245, 130, 32, 0.1);
}

.ccavenue::before {
    background: #f58220;
}

/* ==========================
   BOTTOM CONTENT
========================== */

.gatewayBottomContent {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.gatewayBottomContent p {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
    .gatewayLogoGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gatewayHeading h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .gatewayLogoGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gatewayHeading h2 {
        font-size: 32px;
    }

    .gatewayLogoCard {
        padding: 30px 20px;
    }

    .gatewayLogoCard img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .gatewayLogoGrid {
        grid-template-columns: 1fr;
    }

    .gatewayHeading h2 {
        font-size: 28px;
    }
}
.cryptoGatewaySection {
    position: relative;
    padding: 80px 0;
    background: #070b1a;
    overflow: hidden;
}

.cryptoGatewaySection::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cryptoBgGlow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cryptoGlowOne {
    width: 450px;
    height: 450px;
    background: #8b5cf6;
    top: -150px;
    right: -100px;
    opacity: 0.18;
}

.cryptoGlowTwo {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -150px;
    left: -100px;
    opacity: 0.15;
}

.cryptoHeader {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.cryptoBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.15);
    color: #b794f6;
    border: 1px solid rgba(139, 92, 246, 0.25);
    margin-bottom: 20px;
    font-weight: 600;
}

.cryptoHeader h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.cryptoHeader h2 span {
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cryptoHeader p {
    color: #94a3b8;
    line-height: 1.9;
}

.cryptoBlock {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.cryptoGatewayGrid,
.walletGrid{
    align-items:stretch;
}

.walletCard,
.cryptoCard{
    height:100%;
}

.cryptoBlockTitle h3{
    color:#ffffff;
    margin-bottom:30px;
    font-size:28px;
    font-weight:600;
}

.cryptoGatewayGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cryptoCard{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );

    border-radius:24px;
    padding:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:160px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.15);

    transition:.4s ease;
}

.cryptoCard::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.35),
        rgba(255,255,255,0)
    );

    pointer-events:none;
}

.cryptoCard:hover{
    transform:translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}

.cryptoCard img{
    width:100%;
    max-width:180px;
    height:auto;
    object-fit:contain;
    margin:0;
    position:relative;
    z-index:2;
}

.cryptoCard h4 {
    color: #fff;
    margin: 0;
}

.nowpayments{
    border:2px solid #00C853;
}

.coinpayments{
    border:2px solid #F7931A;
}

.bitpay{
    border:2px solid #2E6CF6;
}

.coingate{
    border:2px solid #00B8FF;
}

.walletGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.walletCard{
    background:linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );

    border-radius:20px;
    padding:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.5);

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);

    transition:.35s ease;
}

.walletCard:hover{
    transform:translateY(-8px);
}

.walletCard img{
    max-width:110px;
}

.walletCard span{
    color:#0F172A;
    font-weight:600;
}
.coinGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.coinItem{
    display:flex;
    align-items:center;
    gap:12px;

    background:linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );

    padding:14px 20px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.5);

    box-shadow:
        0 8px 20px rgba(0,0,0,.10);

    transition:.3s ease;
}

.coinItem:hover{
    transform:translateY(-5px);
}

.coinItem img{
    width:28px;
    height:28px;
}

.coinItem span{
    color:#0F172A;
    font-weight:600;
}
.cryptoBottomBox {
    margin-top: 40px;
    padding: 45px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.12),
        rgba(6, 182, 212, 0.12)
    );
    border: 1px solid rgba(139, 92, 246, 0.25);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cryptoBottomBox h3 {
    color: #fff;
    margin-bottom: 15px;
}

.cryptoBottomBox p {
    color: #cbd5e1;
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
}

@media (max-width: 991px) {
    .cryptoGatewayGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .walletGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cryptoHeader h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .cryptoGatewayGrid,
    .walletGrid {
        grid-template-columns: 1fr;
    }

    .cryptoHeader h2 {
        font-size: 32px;
    }
}
.stablecoinSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f8fffc 100%);
    overflow: hidden;
    position: relative;
}

.stablecoinSection::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.stablecoinWrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.stablecoinBadge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ccfbf1;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 20px;
}

.stablecoinContent h2 {
    font-size: 52px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.stablecoinContent h2 span {
    color: #14b8a6;
}

.stablecoinContent p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 18px;
}

.stablecoinVisual {
    position: relative;
    height: 420px;
}

.usdtCircle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 25px 60px rgba(20, 184, 166, 0.25);
}

.usdtCircle img {
    width: 120px;
}

.floatingCard {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(20, 184, 166, 0.15);
    padding: 14px 22px;
    border-radius: 15px;
    font-weight: 600;
    color: #0f766e;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.cardOne {
    top: 40px;
    right: 10px;
}

.cardTwo {
    bottom: 80px;
    right: 0;
}

.cardThree {
    left: 0;
    top: 170px;
}

.stablecoinGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stableFeature {
    background: #fff;
    border: 1px solid #ccfbf1;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
}

.stableFeature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.12);
}

.stableFeature i {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ccfbf1;
    color: #14b8a6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 28px;
}

.stableFeature h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .stablecoinWrapper {
        grid-template-columns: 1fr;
    }

    .stablecoinGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stablecoinContent h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .stablecoinGrid {
        grid-template-columns: 1fr;
    }

    .stablecoinVisual {
        height: auto;
        padding: 50px 0;
    }

    .floatingCard {
        display: none;
    }

    .stablecoinContent h2 {
        font-size: 32px;
    }
}
.subscriptionSection {
    padding: 80px 0;
    background: #faf7ff;
    overflow: hidden;
}

.subscriptionWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.subscriptionBadge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f3e8ff;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 20px;
}

.subscriptionContent h2 {
    font-size: 52px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subscriptionContent h2 span {
    color: #7c3aed;
}

.subscriptionContent p {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

/* VISUAL */

.subscriptionVisual {
    display: flex;
    justify-content: center;
}

.subscriptionCircle {
    position: relative;
    width: 420px;
    height: 420px;
    border: 2px dashed #d8b4fe;
    border-radius: 50%;
}

.centerBox {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: absolute;
    background: #fff;
    border: 1px solid #e9d5ff;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
}

.orbit1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit2 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.orbit3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit4 {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* FEATURES */

.subscriptionFeatures {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.subscriptionCard {
    background: #fff;
    border: 1px solid #e9d5ff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
}

.subscriptionCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.1);
}

.subscriptionCard i {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #f3e8ff;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.subscriptionCard h4 {
    margin: 0;
    font-size: 18px;
    color: #111827;
    line-height: 1.5;
}

.subscriptionBottom {
    margin-top: 60px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
}

.subscriptionBottom p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 991px) {
    .subscriptionWrapper {
        grid-template-columns: 1fr;
    }

    .subscriptionContent h2 {
        font-size: 38px;
    }

    .subscriptionFeatures {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .subscriptionCircle {
        width: 320px;
        height: 320px;
    }

    .subscriptionFeatures {
        grid-template-columns: 1fr;
    }

    .subscriptionContent h2 {
        font-size: 32px;
    }
}

.paymentApiSection {
    padding: 80px 0;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.paymentApiSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.paymentApiWrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.apiBadge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.25);
    margin-bottom: 20px;
    font-weight: 600;
}

.paymentApiContent h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.paymentApiContent h2 span {
    color: #06b6d4;
}

.paymentApiContent p {
    color: #94a3b8;
    line-height: 1.9;
}

/* Code Window */

.apiCodeWindow {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    overflow: hidden;
}

.windowHeader {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 8px;
}

.windowHeader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.windowHeader span:nth-child(1) {
    background: #ef4444;
}

.windowHeader span:nth-child(2) {
    background: #f59e0b;
}

.windowHeader span:nth-child(3) {
    background: #10b981;
}

.codeLines {
    padding: 30px;
}

.codeLines div {
    color: #06b6d4;
    font-family: monospace;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Cards */

.apiGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.apiCard {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
    text-align: center;
}

.apiCard i {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 28px;
}

.apiCard h4 {
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Bottom */

.apiBottomBox {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.15),
        rgba(6, 182, 212, 0.15)
    );
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.apiBottomBox p {
    color: #e2e8f0;
    margin: 0;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 991px) {
    .paymentApiWrapper {
        grid-template-columns: 1fr;
    }

    .apiGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paymentApiContent h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .apiGrid {
        grid-template-columns: 1fr;
    }

    .paymentApiContent h2 {
        font-size: 32px;
    }
}
/* ==========================================
   PAYMENT SECURITY & COMPLIANCE
========================================== */

.paymentSecuritySection {
    padding: 80px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.paymentSecuritySection::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.paymentSecuritySection .container {
    position: relative;
    z-index: 2;
}

/* HEADER AREA */

.securityWrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 60px;
}

.securityImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.securityShield {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
    position: relative;
}

.securityShield::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 2px dashed rgba(37, 99, 235, 0.2);
}

.securityShield i {
    color: #fff;
    font-size: 90px;
}

.securityBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

.securityContent h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.securityContent h2 span {
    color: #2563eb;
}

.securityContent p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

/* FEATURES */

.securityFeatures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.securityCard {
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.3s ease;
}

.securityCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.securityCard i {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.securityCard h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

/* BOTTOM INFO */

.securityBottomBox {
    margin-top: 50px;
    padding: 35px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    text-align: center;
}

.securityBottomBox p {
    color: #fff;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .securityFeatures {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .securityWrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .securityFeatures {
        grid-template-columns: repeat(2, 1fr);
    }

    .securityContent h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .securityFeatures {
        grid-template-columns: 1fr;
    }

    .securityShield {
        width: 220px;
        height: 220px;
    }

    .securityShield::before {
        width: 260px;
        height: 260px;
    }

    .securityShield i {
        font-size: 70px;
    }

    .securityContent h2 {
        font-size: 32px;
    }
}
.securityImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.securityImgBox {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid #bfdbfe;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    max-width: 500px;
}

.securityImgBox img {
    width: 100%;
    display: block;
    border-radius: 20px;
}
/* ====================================
   INDUSTRIES WE SERVE
==================================== */

.industriesSection {
    padding: 80px 0;
    background: #fff7ed;
    position: relative;
    overflow: hidden;
}

.industriesSection::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.08);
}

.industriesSection::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.08);
}

.industriesSection .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.industriesHeading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.industriesTag {
    display: inline-block;
    padding: 10px 22px;
    background: #ffedd5;
    color: #f97316;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.industriesHeading h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.industriesHeading h2 span {
    color: #f97316;
}

.industriesHeading p {
    color: #64748b;
    line-height: 1.9;
}

/* Industry Wall */

.industriesWall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industryTile {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 28px;

    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 60px;

    font-weight: 600;
    color: #0f172a;

    transition: 0.35s ease;
}

.industryTile i {
    color: #f97316;
    font-size: 18px;
}

.industryTile:hover {
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.industryTile.featured {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
}

.industryTile.featured i {
    color: #fff;
}

/* Bottom Box */

.industriesInfoBox {
    margin-top: 50px;
    padding: 30px;
    border-radius: 24px;

    background: linear-gradient(135deg, #f97316, #fb923c);

    text-align: center;
}

.industriesInfoBox p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 991px) {
    .industriesHeading h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .industriesHeading h2 {
        font-size: 32px;
    }

    .industriesWall {
        gap: 15px;
    }

    .industryTile {
        width: 100%;
        justify-content: center;
    }
}
.benefitsRoadmapSection {
    padding: 80px 0;
    background: #fcfcfd;
}

.benefitsHeader {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.benefitsBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefitsHeader h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.benefitsHeader h2 span {
    color: #f59e0b;
}

.benefitsHeader p {
    color: #64748b;
    line-height: 1.9;
}

/* Roadmap */

.benefitsRoadmap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.roadLine {
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #fcd34d;
    z-index: 1;
}

.roadItem {
    position: relative;
    z-index: 2;
    text-align: center;
}

.roadIcon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #f59e0b;
    margin-bottom: 18px;
}

.roadItem h4 {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
}

/* Summary */

.benefitsSummary {
    margin-top: 60px;
    text-align: center;
    padding: 35px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.benefitsSummary p {
    margin: 0;
    color: #fff;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .benefitsRoadmap {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadLine {
        display: none;
    }

    .benefitsHeader h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .benefitsRoadmap {
        grid-template-columns: 1fr;
    }

    .benefitsHeader h2 {
        font-size: 32px;
    }
}

/* ===================================
   PAYMENT PRICING
=================================== */

.paymentPricingSection {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.paymentPricingSection::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
}

.paymentPricingSection::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.06);
}

.paymentPricingSection .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.pricingHeader {
    text-align: center;
    margin-bottom: 50px;
}

.pricingBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricingHeader h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
}

.pricingHeader h2 span {
    color: #60a5fa;
}

/* Table */

.pricingTableWrap {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.pricingTable {
    width: 100%;
    border-collapse: collapse;
}

.pricingTable thead {
    background: #2563eb;
}

.pricingTable thead th {
    color: #fff;
    padding: 22px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}

.pricingTable tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

.pricingTable tbody tr:last-child {
    border-bottom: none;
}

.pricingTable tbody tr:hover {
    background: #f8fafc;
}

.pricingTable td {
    padding: 22px;
    color: #334155;
    font-size: 16px;
}

.pricingTable td:last-child {
    font-weight: 700;
    color: #2563eb;
}

/* Note */

.pricingNote {
    margin-top: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
}

.pricingNote h4 {
    color: #93c5fd;
    margin-bottom: 12px;
    font-weight: 600;
}

.pricingNote p {
    color: #cbd5e1;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .pricingHeader h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .pricingHeader h2 {
        font-size: 32px;
    }

    .pricingTable {
        min-width: 650px;
    }

    .pricingTableWrap {
        overflow-x: auto;
    }
}

/* ===================================
   WHY CHOOSE DIGIATURE
=================================== */

.whyChoosePaymentSection {
    padding: 80px 0;
    background: #f8f7ff;
    overflow: hidden;
}

.whyChooseWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left */

.whyChooseBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 20px;
}

.whyChooseContent h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

.whyChooseContent h2 span {
    color: #7c3aed;
}

.whyChooseContent p {
    color: #64748b;
    line-height: 1.9;
}

.whyChooseBottom {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ddd6fe;
}

/* Right */

.whyChooseFeatures {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chooseCard {
    background: #fff;
    border: 1px solid #ddd6fe;
    border-radius: 22px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s;
}

.chooseCard:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.08);
}

.chooseCard span {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chooseCard h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

.offset {
    margin-left: 40px;
}

/* Responsive */

@media (max-width: 991px) {
    .whyChooseWrapper {
        grid-template-columns: 1fr;
    }

    .whyChooseContent h2 {
        font-size: 38px;
    }

    .offset {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .whyChooseContent h2 {
        font-size: 32px;
    }

    .chooseCard {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================
   PAYMENT FAQ
==================================== */

.paymentFaqSection {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdff, #ecfeff);
}

.faqHeader {
    text-align: center;
    margin-bottom: 60px;
}

.faqBadge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #cffafe;
    color: #0891b2;
    font-weight: 600;
    margin-bottom: 20px;
}

.faqHeader h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
}

.faqHeader h2 span {
    color: #0891b2;
}

/* Accordion */

.faqWrapper {
    max-width: 900px;
    margin: auto;
}

.faqItem {
    margin-bottom: 18px;
    border-radius: 24px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(8, 145, 178, 0.15);
}

.faqQuestion {
    width: 100%;
    border: none;
    background: none;
    padding: 24px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 18px;
    font-weight: 600;
    color: #0f172a;

    cursor: pointer;
}

.faqQuestion span {
    font-size: 24px;
    color: #0891b2;
}

.faqAnswer {
    display: none;
    padding: 0 30px 25px;
}

.faqAnswer p {
    margin: 0;
    color: #64748b;
    line-height: 1.9;
}

.faqItem.active .faqAnswer {
    display: block;
}

.faqItem.active .faqQuestion span {
    transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 767px) {
    .faqHeader h2 {
        font-size: 32px;
    }

    .faqQuestion {
        font-size: 16px;
        padding: 20px;
    }

    .faqAnswer {
        padding: 0 20px 20px;
    }
}
