/* ---- COLOR VARS ---- */
:root{
  --cd-primary:#021b8c;
  --cd-secondary:#111111;
  --cd-white:#ffffff;
  --cd-light:#f4f6ff;
  --cd-accent:#e8ecff;
  --cd-border:#dde3ff;
  --cd-gray:#f7f8fc;
  --cd-muted:#555;
}
/* ===========================
           SECTION COMMON
        =========================== */
        .bulksms-section {
            padding: 80px 0;
        }

        .bulksms-section-alt {
            background: #f8f9ff;
        }

        .bulksms-section-label {
            font-size: 12px;
            font-weight: 700;
            color: #021b8c;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .bulksms-section-title {
            font-size: 36px;
            font-weight: 800;
            color: #111111;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .bulksms-section-desc {
            font-size: 17px;
            color: #646464;
            line-height: 1.7;
            max-width: 640px;
        }

        /* ===========================
           ABOUT / INTRO SECTION
        =========================== */
        .bulksms-about {
            padding: 80px 0;
        }

        .bulksms-about-text p {
            font-size: 17px;
            color: #646464;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .bulksms-use-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .bulksms-use-tag {
            background: #eef1ff;
            color: #021b8c;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
        }

        .bulksms-about-graphic {
            background: #021b8c;
            border-radius: 20px;
            padding: 40px 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bulksms-about-graphic-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 28px;
        }

        .bulksms-about-feature-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }

        .bulksms-about-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .bulksms-about-feature-text strong {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            display: block;
        }

        .bulksms-about-feature-text p {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin: 0;
            line-height: 1.5;
        }

        /* ===========================
           SERVICES SECTION
        =========================== */
        .bulksms-services {
            padding: 80px 0;
            background: #f8f9ff;
        }

        .bulksms-service-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 28px;
            height: 100%;
            border: 1px solid #e8eaf0;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }

        .bulksms-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #021b8c;
            transform: scaleX(0);
            transition: transform 0.25s;
        }

        .bulksms-service-card:hover {
            box-shadow: 0 10px 40px rgba(2, 27, 140, 0.1);
            transform: translateY(-4px);
            border-color: transparent;
        }

        .bulksms-service-card:hover::before {
            transform: scaleX(1);
        }

        .bulksms-service-icon {
            width: 56px;
            height: 56px;
            background: #eef1ff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .bulksms-service-name {
            font-size: 18px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 10px;
        }

        .bulksms-service-desc {
            font-size: 17px;
            color: #646464;
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .bulksms-service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .bulksms-service-list li {
            font-size: 17px;
            color: #646464;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bulksms-service-list li svg {
            flex-shrink: 0;
            color: #021b8c;
        }

        /* ===========================
           WHY CHOOSE SECTION
        =========================== */
        .bulksms-why {
            padding: 80px 0;
        }

        .bulksms-why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .bulksms-why-card {
            padding: 28px 24px;
            border-radius: 14px;
            background: #f8f9ff;
            border: 1px solid #e4e7f5;
            transition: all 0.2s;
        }

        .bulksms-why-card:hover {
            background: #021b8c;
        }

        .bulksms-why-card:hover .bulksms-why-title,
        .bulksms-why-card:hover .bulksms-why-text {
            color: #ffffff;
        }

        .bulksms-why-card:hover .bulksms-why-icon-wrap {
            background: rgba(255,255,255,0.15);
        }

        .bulksms-why-icon-wrap {
            width: 52px;
            height: 52px;
            background: #eef1ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: background 0.2s;
        }

        .bulksms-why-title {
            font-size: 17px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 8px;
            transition: color 0.2s;
        }

        .bulksms-why-text {
            font-size: 17px;
            color: #646464;
            line-height: 1.6;
            transition: color 0.2s;
            margin: 0;
        }

        /* ===========================
           FEATURES SECTION
        =========================== */
        .bulksms-features {
            padding: 80px 0;
            background: #021b8c;
        }

        .bulksms-features-title {
            color: #ffffff;
        }

        .bulksms-features-desc {
            color: rgba(255,255,255,0.7);
        }

        .bulksms-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 48px;
        }

        .bulksms-feature-item {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 18px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s;
        }

        .bulksms-feature-item:hover {
            background: rgba(255,255,255,0.15);
        }

        .bulksms-feature-dot {
            width: 8px;
            height: 8px;
            background: #7eb8ff;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .bulksms-feature-name {
            font-size: 17px;
            font-weight: 500;
            color: #ffffff;
            margin: 0;
        }

        /* ===========================
           INDUSTRIES SECTION
        =========================== */
        .bulksms-industries {
            padding: 80px 0;
            background: #f8f9ff;
        }

        .bulksms-industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 40px;
        }

        .bulksms-industry-card {
            background: #ffffff;
            border: 1px solid #e4e7f5;
            border-radius: 12px;
            padding: 20px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.2s;
            text-decoration: none;
        }

        .bulksms-industry-card:hover {
            border-color: #021b8c;
            box-shadow: 0 4px 20px rgba(2,27,140,0.1);
            text-decoration: none;
        }

        .bulksms-industry-icon {
            width: 42px;
            height: 42px;
            background: #eef1ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .bulksms-industry-name {
            font-size: 17px;
            font-weight: 600;
            color: #111111;
            margin: 0;
        }

        /* ===========================
           DLT SECTION
        =========================== */
        .bulksms-dlt {
            padding: 80px 0;
        }

        .bulksms-dlt-visual {
            background: #f8f9ff;
            border-radius: 20px;
            padding: 40px 32px;
            border: 1px solid #e4e7f5;
        }

        .bulksms-dlt-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 28px;
        }

        .bulksms-dlt-step:last-child {
            margin-bottom: 0;
        }

        .bulksms-dlt-step-num {
            width: 40px;
            height: 40px;
            background: #021b8c;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .bulksms-dlt-step-title {
            font-size: 15px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 4px;
        }

        .bulksms-dlt-step-text {
            font-size: 17px;
            color: #555555;
            line-height: 1.5;
            margin: 0;
        }

        /* ===========================
           HOW IT WORKS
        =========================== */
        .bulksms-how {
            padding: 80px 0;
            background: #f8f9ff;
        }

        .bulksms-how-steps {
            display: flex;
            gap: 0;
            position: relative;
            margin-top: 48px;
        }

        .bulksms-how-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: #e4e7f5;
        }

        .bulksms-how-step {
            flex: 1;
            text-align: center;
            padding: 0 16px;
            position: relative;
        }

        .bulksms-how-step-circle {
            width: 56px;
            height: 56px;
            background: #021b8c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            position: relative;
            z-index: 1;
        }

        .bulksms-how-step-num {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
        }

        .bulksms-how-step-title {
            font-size: 17px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 8px;
        }

        .bulksms-how-step-text {
            font-size: 17px;
            color: #646464;
            line-height: 1.5;
            margin: 0;
        }

        /* ===========================
           STATS COUNTER SECTION
        =========================== */
        .bulksms-counter {
            padding: 60px 0;
            background: #021b8c;
        }

        .bulksms-counter-item {
            text-align: center;
            padding: 20px;
        }

        .bulksms-counter-num {
            font-size: 48px;
            font-weight: 900;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -1px;
        }

        .bulksms-counter-plus {
            font-size: 32px;
            font-weight: 900;
            color: #7eb8ff;
        }

        .bulksms-counter-label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: 8px;
            font-weight: 400;
        }

        .bulksms-counter-divider {
            width: 1px;
            background: rgba(255,255,255,0.2);
            height: 60px;
            margin: auto;
        }

        /* ===========================
           TESTIMONIALS
        =========================== */
        .bulksms-testimonials {
            padding: 80px 0;
        }

        .bulksms-testimonial-card {
            background: #f8f9ff;
            border: 1px solid #e4e7f5;
            border-radius: 16px;
            padding: 28px 24px;
            height: 100%;
            position: relative;
        }

        .bulksms-testimonial-quote {
            position: absolute;
            top: 20px;
            right: 24px;
        }

        .bulksms-testimonial-text {
            font-size: 14px;
            color: #444444;
            line-height: 1.7;
            margin-bottom: 20px;
            padding-right: 30px;
        }

        .bulksms-testimonial-author {
            font-size: 14px;
            font-weight: 700;
            color: #111111;
        }

        .bulksms-testimonial-role {
            font-size: 12px;
            color: #021b8c;
            font-weight: 500;
        }

        /* ===========================
           FAQ
        =========================== */
        .bulksms-faq {
            padding: 80px 0;
            background: #f8f9ff;
        }

        .bulksms-faq-item {
            background: #ffffff;
            border: 1px solid #e4e7f5;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .bulksms-faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 24px;
            font-size: 15px;
            font-weight: 600;
            color: #111111;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            transition: color 0.2s;
        }

        .bulksms-faq-question:hover {
            color: #021b8c;
        }

        .bulksms-faq-question.active {
            color: #021b8c;
        }

        .bulksms-faq-icon {
            width: 28px;
            height: 28px;
            background: #eef1ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s, transform 0.3s;
        }

        .bulksms-faq-question.active .bulksms-faq-icon {
            background: #021b8c;
            transform: rotate(45deg);
        }

        .bulksms-faq-question.active .bulksms-faq-icon svg {
            stroke: #ffffff;
        }

        .bulksms-faq-answer {
            display: none;
            padding: 0 24px 20px;
            font-size: 14px;
            color: #555555;
            line-height: 1.7;
        }

        .bulksms-faq-answer.open {
            display: block;
        }

        /* ===========================
           CTA SECTION
        =========================== */
        .bulksms-cta {
            padding: 80px 0;
            background: #111111;
        }

        .bulksms-cta-title {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .bulksms-cta-title span {
            color: #7eb8ff;
        }

        .bulksms-cta-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
        }

        .bulksms-cta-btn-white {
            background: #ffffff;
            color: #021b8c;
            padding: 15px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-right: 14px;
            margin-bottom: 12px;
            transition: all 0.2s;
        }

        .bulksms-cta-btn-white:hover {
            background: #e8eeff;
            color: #021b8c;
            text-decoration: none;
        }

        .bulksms-cta-btn-ghost {
            background: transparent;
            color: #ffffff;
            padding: 15px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            border: 2px solid rgba(255,255,255,0.4);
            margin-bottom: 12px;
            transition: all 0.2s;
        }

        .bulksms-cta-btn-ghost:hover {
            border-color: #ffffff;
            color: #ffffff;
            text-decoration: none;
        }

        /* ===========================
           FOOTER
        =========================== */
        .bulksms-footer {
            background: #0a0a0a;
            padding: 60px 0 0;
        }

        .bulksms-footer-logo {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            display: block;
            margin-bottom: 16px;
        }

        .bulksms-footer-logo span {
            color: #7eb8ff;
        }

        .bulksms-footer-about {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .bulksms-footer-heading {
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .bulksms-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .bulksms-footer-links li {
            margin-bottom: 10px;
        }

        .bulksms-footer-links li a {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.2s;
        }

        .bulksms-footer-links li a:hover {
            color: #ffffff;
        }

        .bulksms-footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
        }

        .bulksms-footer-contact-item svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .bulksms-footer-contact-item p {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.5;
            margin: 0;
        }

        .bulksms-footer-contact-item p a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        .bulksms-footer-contact-item p a:hover {
            color: #ffffff;
        }

        .bulksms-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 20px 0;
            margin-top: 48px;
        }

        .bulksms-footer-bottom-text {
            font-size: 12px;
            color: rgba(255,255,255,0.35);
            margin: 0;
            text-align: center;
        }

        .bulksms-footer-bottom-text a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        /* ===========================
           RESPONSIVE
        =========================== */
        @media (max-width: 991px) {
            .bulksms-hero-title {
                font-size: 34px;
            }

            .bulksms-nav-links {
                display: none;
            }

            .bulksms-hamburger {
                display: flex;
            }

            .bulksms-why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bulksms-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bulksms-industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bulksms-how-steps {
                flex-direction: column;
                gap: 24px;
            }

            .bulksms-how-steps::before {
                display: none;
            }

            .bulksms-how-step {
                display: flex;
                align-items: flex-start;
                text-align: left;
                gap: 16px;
                padding: 0;
            }

            .bulksms-how-step-circle {
                margin: 0;
                flex-shrink: 0;
            }

            .bulksms-section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 767px) {
            .bulksms-hero {
                padding: 60px 0 40px;
            }

            .bulksms-hero-title {
                font-size: 28px;
            }

            .bulksms-section {
                padding: 60px 0;
            }

            .bulksms-why-grid {
                grid-template-columns: 1fr;
            }

            .bulksms-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bulksms-industries-grid {
                grid-template-columns: 1fr 1fr;
            }

            .bulksms-counter-divider {
                display: none;
            }

            .bulksms-cta-title {
                font-size: 28px;
            }

            .bulksms-hero-visual {
                margin-top: 40px;
            }

            .bulksms-trust-inner {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .bulksms-features-grid {
                grid-template-columns: 1fr;
            }

            .bulksms-industries-grid {
                grid-template-columns: 1fr;
            }

            .bulksms-hero-btns {
                flex-direction: column;
            }

            .bulksms-btn-primary,
            .bulksms-btn-outline {
                text-align: center;
            }
        }

.bulksms-hero-badge {
            display: inline-block;
            background: #139dea;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
    }

 /* HERO */
  .edu-hero { background: linear-gradient(135deg, #021b8c 0%, #0a2fcc 60%, #1a45e0 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden;padding: 80px 0px; }
  .edu-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
  .edu-hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; padding: 0.35rem 1rem; font-size: 0.8rem; color: #fff; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
  .edu-hero h1 { color: #fff; font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; }
  .edu-hero h1 span { color: #7ee8ff; }
  .edu-hero p.lead-text { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; margin-bottom: 1.8rem; max-width: 520px; }
  .edu-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
  .edu-hero-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.78rem; font-weight: 500; padding: 0.35rem 0.9rem; border-radius: 4px; }
  .btn-hero-primary { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.8rem 2rem; border-radius: 8px; border: none; display: inline-block; text-decoration: none; transition: all 0.25s; }
  .btn-hero-primary:hover { background: #e8edff; color: #021b8c; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .edu-hero-right { position: relative; }

  /* PHONE MOCKUP */
  .phone-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
  .phone-svg-outer { filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35)); }
  .floating-stat { position: absolute; background: #fff; border-radius: 12px; padding: 0.6rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
  .floating-stat .stat-num { font-size: 1.3rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
  .floating-stat .stat-lbl { font-size: 0.7rem; color: #666; font-weight: 500; }
  .stat-a { top: 10%; right: -10%; }
  .stat-b { bottom: 20%; left: -12%; }
  .stat-c { bottom: 5%; right: -8%; }

  /* STATS BAR */
  .edu-statsbar { background: #021b8c; padding: 2rem 0; }
  .edu-statsbar .stat-item { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
  .edu-statsbar .stat-item:last-child { border-right: none; }
  .edu-statsbar .stat-num { font-size: 2.2rem; font-weight: 800; color: #7ee8ff; display: block; line-height: 1; }
  .edu-statsbar .stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 400; margin-top: 0.3rem; }

  /* SECTION COMMON */
  .section-label { font-size: 0.78rem; font-weight: 700; color: #021b8c; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
  .section-title { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
  .section-title span { color: #021b8c; }
  .section-sub { color: #555; font-size: 0.95rem; line-height: 1.75; }

  /* ABOUT */
  .edu-about { padding: 80px 0; background: #fff; }
  .about-feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
  .about-feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.9rem; color: #333; font-weight: 500; }
  .about-check { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

  /* WHY SMS */
  .edu-why { padding: 80px 0; background: #f7f9ff; }
  .why-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 1px solid #e8edf8; transition: all 0.3s; height: 100%; }
  .why-card:hover { border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
  .why-svg-wrap { width: 52px; height: 52px; background: #eef1ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
  .why-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
  .why-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.65; }

  /* SERVICES */
  .edu-services { padding: 80px 0; background: #fff; }
  .svc-card { background: #fff; border-radius: 14px; border: 1px solid #e8edf8; padding: 1.8rem 1.5rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
  .svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #021b8c; transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-card:hover { box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
  .svc-num { font-size: 3rem; font-weight: 900; color: #f0f3ff; position: absolute; top: 1rem; right: 1.2rem; line-height: 1; }
  .svc-svg-wrap { width: 48px; height: 48px; background: #eef1ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
  .svc-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.6rem; }
  .svc-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

  /* FEATURES */
  .edu-features { padding: 80px 0; background: #021b8c; }
  .edu-features .section-title { color: #fff; }
  .edu-features .section-title span { color: #7ee8ff; }
  .edu-features .section-label { color: #7ee8ff; }
  .edu-features .section-sub { color: rgba(255,255,255,0.7); }
  .feat-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
  .feat-icon-wrap { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .feat-item h6 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
  .feat-item p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }

  /* USE CASES */
  .edu-usecases { padding: 80px 0; background: #f7f9ff; }
  .usecase-card { background: #fff; border-radius: 12px; padding: 1.5rem; border: 1px solid #e8edf8; display: flex; align-items: center; gap: 1rem; transition: all 0.3s; }
  .usecase-card:hover { border-color: #021b8c; box-shadow: 0 8px 24px rgba(2,27,140,0.1); transform: translateY(-2px); }
  .usecase-svg-wrap { width: 48px; height: 48px; background: #eef1ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .usecase-card span { font-size: 0.9rem; font-weight: 600; color: #111; }

  /* BENEFITS */
  .edu-benefits { padding: 80px 0; background: #fff; }
  .benefit-card { background: #f7f9ff; border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; transition: all 0.3s; border: 1px solid transparent; }
  .benefit-card:hover { background: #fff; border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
  .benefit-svg-wrap { width: 60px; height: 60px; background: #eef1ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
  .benefit-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
  .benefit-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

  /* HOW IT WORKS */
  .edu-howitworks { padding: 80px 0; background: #f7f9ff; }
  .step-card-1 { position: relative; text-align: center; padding: 0 1rem; }
  .step-circle { width: 72px; height: 72px; border-radius: 50%; background: #021b8c; color: #fff; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; }
  .step-connector { position: absolute; top: 36px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #021b8c, #7ee8ff); z-index: 0; }
  .step-card-1:last-child .step-connector { display: none; }
  .step-card-1 h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
  .step-card-1 p { font-size: 0.83rem; color: #666; line-height: 1.65; }
  .step-svg-wrap { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }

  /* WHY CHOOSE */
  .edu-whychoose { padding: 80px 0; background: #fff; }
  .choose-card { background: #f7f9ff; border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; border: 1px solid transparent; }
  .choose-card:hover { background: #fff; border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
  .choose-svg-wrap { width: 52px; height: 52px; background: #eef1ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
  .choose-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
  .choose-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

  /* CTA */
  .edu-cta { padding: 80px 0; background: linear-gradient(135deg, #021b8c 0%, #0a2fcc 100%); position: relative; overflow: hidden; }
  .edu-cta::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -200px; right: -100px; }
  .edu-cta::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -150px; left: -80px; }
  .edu-cta h2 { color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
  .edu-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
  .btn-cta-white { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.8rem 2rem; border-radius: 8px; border: none; display: inline-block; text-decoration: none; transition: all 0.25s; }
  .btn-cta-white:hover { background: #e8edff; color: #021b8c; text-decoration: none; transform: translateY(-2px); }
  .btn-cta-outline { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.8rem 2rem; border-radius: 8px; border: 2px solid rgba(255,255,255,0.5); display: inline-block; text-decoration: none; transition: all 0.25s; }
  .btn-cta-outline:hover { border-color: #fff; color: #fff; text-decoration: none; background: rgba(255,255,255,0.08); }
  .cta-info { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 1.2rem; }
  .cta-info a { color: #7ee8ff; font-weight: 600; }
  
/* ── HERO ── */
.adv-hero { background: #021b8c; min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; padding:90px 0px;}
.adv-hero-bg-shape { position: absolute; top: -80px; right: -80px; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.adv-hero-bg-shape2 { position: absolute; bottom: -120px; left: -60px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.03); pointer-events: none; }
.adv-hero-lines { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px); pointer-events: none; }
.adv-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 30px; padding: 0.38rem 1rem; font-size: 0.78rem; color: #fff; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.4rem; }
.adv-hero h1 { color: #fff; font-size: 2.9rem; font-weight: 800; line-height: 1.18; margin-bottom: 1.2rem; }
.adv-hero h1 span { color: #ffdb6e; }
.adv-hero-desc { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; max-width: 500px; }
.adv-hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.adv-hero-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 500; padding: 0.32rem 0.9rem; border-radius: 4px; }
.adv-btn-primary { background: #ffdb6e; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2.1rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; border: none; }
.adv-btn-primary:hover { background: #ffe99a; color: #021b8c; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* Campaign card in hero */
.adv-campaign-card { background: #fff; border-radius: 16px; padding: 0; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.35); max-width: 360px; margin: 0 auto; }
.camp-card-header { background: #021b8c; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.camp-card-header span { color: #fff; font-weight: 700; font-size: 0.9rem; }
.camp-msg-list { padding: 1rem 1.2rem; }
.camp-msg { background: #f7f9ff; border-radius: 10px; padding: 0.8rem 1rem; margin-bottom: 0.8rem; border-left: 3px solid #021b8c; }
.camp-msg:last-child { margin-bottom: 0; }
.camp-msg-label { font-size: 0.68rem; font-weight: 700; color: #021b8c; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.25rem; }
.camp-msg-text { font-size: 0.83rem; color: #333; line-height: 1.5; }
.camp-msg.yellow { border-left-color: #ffdb6e; }
.camp-msg.yellow .camp-msg-label { color: #b8800a; }
.camp-msg.green { border-left-color: #22c55e; }
.camp-msg.green .camp-msg-label { color: #166534; }
.camp-stats-row { display: flex; border-top: 1px solid #eef1ff; }
.camp-stat { flex: 1; text-align: center; padding: 0.8rem 0.5rem; border-right: 1px solid #eef1ff; }
.camp-stat:last-child { border-right: none; }
.camp-stat-num { font-size: 1.15rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
.camp-stat-lbl { font-size: 0.65rem; color: #888; font-weight: 500; margin-top: 2px; }

/* ── STATS BAR ── */
.adv-statsbar { background: #111; padding: 2rem 0; }
.adv-statsbar .astat-item { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.adv-statsbar .astat-item:last-child { border-right: none; }
.adv-statsbar .astat-num { font-size: 2.2rem; font-weight: 800; color: #ffdb6e; display: block; line-height: 1; }
.adv-statsbar .astat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 400; margin-top: 0.3rem; }

/* ── SHARED SECTION LABELS ── */
.sec-tag { font-size: 0.75rem; font-weight: 700; color: #021b8c; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.sec-heading { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
.sec-heading span { color: #021b8c; }
.sec-body { color: #555; font-size: 0.94rem; line-height: 1.78; }

/* ── ABOUT / TRANSFORM ── */
.adv-about { padding: 88px 0; background: #fff; }
.about-check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.about-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; color: #333; font-weight: 500; }
.chk-svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.about-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.about-mini-stat { background: #f4f6ff; border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center; flex: 1; min-width: 90px; }
.about-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #021b8c; line-height: 1; }
.about-mini-stat span { font-size: 0.72rem; color: #666; font-weight: 500; }

/* ── WHY SMS ── */
.adv-why { padding: 88px 0; background: #f7f9ff; }
.why-adv-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid transparent; height: 100%; transition: all 0.3s; }
.why-adv-card:hover { border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
.why-adv-icon { width: 54px; height: 54px; border-radius: 14px; background: #eef1ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.why-adv-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.why-adv-card p { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* ── SERVICES ── */
.adv-services { padding: 88px 0; background: #fff; }
.svc-adv-card { position: relative; background: #fff; border-radius: 14px; border: 1px solid #e5e9f5; padding: 2rem 1.5rem 1.5rem; height: 100%; overflow: hidden; transition: all 0.3s; }
.svc-adv-card:hover { box-shadow: 0 16px 40px rgba(2,27,140,0.1); transform: translateY(-4px); border-color: #c5d0ff; }
.svc-adv-num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3.5rem; font-weight: 900; color: #f0f3ff; line-height: 1; user-select: none; }
.svc-adv-icon { width: 50px; height: 50px; border-radius: 12px; background: #eef1ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.svc-adv-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.svc-adv-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── FEATURES ── */
.adv-features { padding: 88px 0; background: #021b8c; }
.adv-features .sec-heading { color: #fff; }
.adv-features .sec-heading span { color: #ffdb6e; }
.adv-features .sec-tag { color: #ffdb6e; }
.adv-features .sec-body { color: rgba(255,255,255,0.7); }
.feat-adv-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.feat-adv-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-adv-row h6 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.feat-adv-row p { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.6; }

/* ── USE CASES ── */
.adv-usecases { padding: 88px 0; background: #f7f9ff; }
.usecase-adv-card { background: #fff; border-radius: 12px; padding: 1.5rem; border: 1px solid #e5e9f5; display: flex; align-items: center; gap: 1rem; transition: all 0.3s; }
.usecase-adv-card:hover { border-color: #021b8c; box-shadow: 0 8px 24px rgba(2,27,140,0.1); transform: translateY(-2px); }
.usecase-adv-icon { width: 50px; height: 50px; background: #eef1ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usecase-adv-card span { font-size: 0.9rem; font-weight: 600; color: #111; }

/* ── BENEFITS ── */
.adv-benefits { padding: 88px 0; background: #fff; }
.benefit-adv-card { border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; background: #f7f9ff; transition: all 0.3s; border: 1px solid transparent; }
.benefit-adv-card:hover { background: #fff; border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.09); transform: translateY(-4px); }
.benefit-adv-icon { width: 62px; height: 62px; background: #eef1ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.benefit-adv-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.benefit-adv-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── HOW IT WORKS ── */
.adv-howitworks { padding: 88px 0; background: #f7f9ff; }
.hiw-adv-card { text-align: center; padding: 0 1rem; position: relative; }
.hiw-step-circle { width: 72px; height: 72px; border-radius: 50%; background: #021b8c; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; position: relative; z-index: 1; }
.hiw-connector { position: absolute; top: 36px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #021b8c, #c5d0ff); z-index: 0; }
.hiw-adv-card:last-child .hiw-connector { display: none; }
.hiw-adv-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.hiw-adv-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ── WHY CHOOSE ── */
.adv-whychoose { padding: 88px 0; background: #fff; }
.choose-adv-card { background: #f7f9ff; border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; border: 1px solid transparent; }
.choose-adv-card:hover { background: #fff; border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
.choose-adv-icon { width: 54px; height: 54px; border-radius: 14px; background: #eef1ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.choose-adv-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.choose-adv-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── CTA ── */
.adv-cta { padding: 88px 0; background: linear-gradient(135deg, #021b8c 0%, #0a2fcc 100%); position: relative; overflow: hidden; text-align: center; }
.adv-cta::before { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(255,255,255,0.04); top:-250px; right:-100px; }
.adv-cta::after { content:''; position:absolute; width:350px; height:350px; border-radius:50%; background:rgba(255,255,255,0.04); bottom:-200px; left:-80px; }
.adv-cta h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 1rem; }
.adv-cta p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 2rem; }
.adv-btn-white { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.adv-btn-white:hover { background: #ffdb6e; color: #021b8c; text-decoration: none; transform: translateY(-2px); }
.adv-btn-ghost { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; border: 2px solid rgba(255,255,255,0.4); display: inline-block; text-decoration: none; transition: all 0.25s; }
.adv-btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.cta-contact-info { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1.4rem; }
.cta-contact-info a { color: #ffdb6e; font-weight: 600; }

/* ── HERO ── */
.fmcg-hero { background: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.fmcg-hero-blob { position: absolute; top: -120px; right: -120px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, rgba(2,27,140,0.04) 60%, transparent 80%); pointer-events: none; }
.fmcg-hero-dots { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background-image: radial-gradient(circle, rgba(2,27,140,0.06) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.fmcg-hero-label { display: inline-flex; align-items: center; gap: 0.5rem; background: #f0faf4; border: 1px solid #a7f3d0; border-radius: 30px; padding: 0.38rem 1rem; font-size: 0.78rem; color: #065f46; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.4rem; }
.fmcg-hero-label span { width: 8px; height: 8px; border-radius: 50%; background: #10b981; display: inline-block; }
.fmcg-hero h1 { color: #111; font-size: 2.9rem; font-weight: 800; line-height: 1.18; margin-bottom: 1.2rem; }
.fmcg-hero h1 span { color: #021b8c; }
.fmcg-hero h1 em { color: #10b981; font-style: normal; }
.fmcg-hero-desc { color: #555; font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; max-width: 500px; }
.fmcg-hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.fmcg-hero-pill { background: #f0faf4; border: 1px solid #a7f3d0; color: #065f46; font-size: 0.78rem; font-weight: 600; padding: 0.32rem 0.9rem; border-radius: 4px; }
.fmcg-btn-main { background: #021b8c; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2.1rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.fmcg-btn-main:hover { background: #0129cc; color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(2,27,140,0.25); }

/* supply chain visual */
.fmcg-hero-visual { position: relative; }

/* ── STATS BAR ── */
.fmcg-statsbar { background: #021b8c; padding: 2rem 0; }
.fmcg-statsbar .fs-item { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
.fmcg-statsbar .fs-item:last-child { border-right: none; }
.fmcg-statsbar .fs-num { font-size: 2.2rem; font-weight: 800; color: #6ee7b7; display: block; line-height: 1; }
.fmcg-statsbar .fs-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 400; margin-top: 0.3rem; }

/* ── SECTION LABELS ── */
.f-tag { font-size: 0.75rem; font-weight: 700; color: #10b981; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.f-title { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
.f-title span { color: #021b8c; }
.f-body { color: #555; font-size: 0.94rem; line-height: 1.78; }

/* ── ABOUT ── */
.fmcg-about { padding: 88px 0; background: #fff; }
.fa-check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.fa-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; color: #333; font-weight: 500; }
.fa-chk { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.fa-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.fa-mini-stat { background: #f0faf4; border: 1px solid #a7f3d0; border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center; flex: 1; min-width: 90px; }
.fa-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #021b8c; line-height: 1; }
.fa-mini-stat span { font-size: 0.72rem; color: #666; font-weight: 500; }

/* ── WHY SMS ── */
.fmcg-why { padding: 88px 0; background: #f8fffe; }
.fw-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid transparent; height: 100%; transition: all 0.3s; }
.fw-card:hover { border-color: #10b981; box-shadow: 0 12px 32px rgba(16,185,129,0.1); transform: translateY(-4px); }
.fw-icon { width: 54px; height: 54px; border-radius: 14px; background: #f0faf4; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.fw-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.fw-card p { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* ── SERVICES ── */
.fmcg-services { padding: 88px 0; background: #fff; }
.fs-card { position: relative; background: #fff; border-radius: 14px; border: 1px solid #e5e9f5; padding: 2rem 1.5rem 1.5rem; height: 100%; overflow: hidden; transition: all 0.3s; }
.fs-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #10b981, #021b8c); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.fs-card:hover::after { transform: scaleX(1); }
.fs-card:hover { box-shadow: 0 16px 40px rgba(2,27,140,0.09); transform: translateY(-4px); border-color: #c5d0ff; }
.fs-card-num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3.5rem; font-weight: 900; color: #f0faf4; line-height: 1; user-select: none; }
.fs-icon { width: 50px; height: 50px; border-radius: 12px; background: #f0faf4; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.fs-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.fs-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── FEATURES ── */
.fmcg-features { padding: 88px 0; background: #021b8c; }
.fmcg-features .f-title { color: #fff; }
.fmcg-features .f-title span { color: #6ee7b7; }
.fmcg-features .f-tag { color: #6ee7b7; }
.fmcg-features .f-body { color: rgba(255,255,255,0.7); }
.ff-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.ff-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ff-row h6 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.ff-row p { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.6; }

/* ── USE CASES ── */
.fmcg-usecases { padding: 88px 0; background: #f8fffe; }
.fu-card { background: #fff; border-radius: 12px; padding: 1.5rem; border: 1px solid #e5e9f5; display: flex; align-items: center; gap: 1rem; transition: all 0.3s; margin-bottom: 1rem; }
.fu-card:hover { border-color: #10b981; box-shadow: 0 8px 24px rgba(16,185,129,0.1); transform: translateY(-2px); }
.fu-icon { width: 50px; height: 50px; background: #f0faf4; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fu-card span { font-size: 0.9rem; font-weight: 600; color: #111; }

/* ── BENEFITS ── */
.fmcg-benefits { padding: 88px 0; background: #fff; }
.fb-card { border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; background: #f8fffe; transition: all 0.3s; border: 2px solid transparent; }
.fb-card:hover { background: #fff; border-color: #10b981; box-shadow: 0 12px 32px rgba(16,185,129,0.1); transform: translateY(-4px); }
.fb-icon { width: 64px; height: 64px; background: #f0faf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.fb-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.fb-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── HOW IT WORKS ── */
.fmcg-hiw { padding: 88px 0; background: #f8fffe; }
.hiw-f-card { text-align: center; padding: 0 1rem; position: relative; }
.hiw-f-circle { width: 72px; height: 72px; border-radius: 50%; background: #021b8c; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; position: relative; z-index: 1; }
.hiw-f-connector { position: absolute; top: 36px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #021b8c, #a7f3d0); z-index: 0; }
.hiw-f-card:last-child .hiw-f-connector { display: none; }
.hiw-f-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.hiw-f-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ── WHY CHOOSE ── */
.fmcg-whychoose { padding: 88px 0; background: #fff; }
.fc-card { background: #f8fffe; border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; border: 2px solid transparent; }
.fc-card:hover { background: #fff; border-color: #021b8c; box-shadow: 0 12px 32px rgba(2,27,140,0.1); transform: translateY(-4px); }
.fc-icon { width: 54px; height: 54px; border-radius: 14px; background: #f0faf4; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.fc-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.fc-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ── CTA ── */
.fmcg-cta { padding: 88px 0; background: linear-gradient(135deg, #065f46 0%, #021b8c 100%); position: relative; overflow: hidden; text-align: center; }
.fmcg-cta::before { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(255,255,255,0.04); top:-250px; right:-100px; }
.fmcg-cta::after { content:''; position:absolute; width:350px; height:350px; border-radius:50%; background:rgba(255,255,255,0.04); bottom:-200px; left:-80px; }
.fmcg-cta h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 1rem; }
.fmcg-cta p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 2rem; }
.fcta-btn-w { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.fcta-btn-w:hover { background: #6ee7b7; color: #065f46; text-decoration: none; transform: translateY(-2px); }
.fcta-btn-o { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; border: 2px solid rgba(255,255,255,0.4); display: inline-block; text-decoration: none; transition: all 0.25s; }
.fcta-btn-o:hover { border-color: #6ee7b7; color: #6ee7b7; text-decoration: none; }
.fcta-info { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1.4rem; }
.fcta-info a { color: #6ee7b7; font-weight: 600; }
/* ── SMS LIVE FEED CARD ── */
.fmcg-feed-card { background: #fff; border-radius: 18px; box-shadow: 0 24px 64px rgba(2,27,140,0.12); overflow: hidden; border: 1px solid #e5e9f5; }
.fmcg-feed-header { background: linear-gradient(135deg, #065f46, #021b8c); padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.75rem; }
.fmcg-feed-header span { color: #fff; font-weight: 700; font-size: 0.9rem; }
.fmcg-feed-dot { width: 8px; height: 8px; border-radius: 50%; background: #6ee7b7; animation: fpulse 2s infinite; }
@keyframes fpulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.fmcg-msg-wrap { padding: 1rem 1.2rem; }
.fmcg-msg { border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 0.8rem; border-left: 3px solid; }
.fmcg-msg:last-child { margin-bottom: 0; }
.fmcg-msg.msg-blue { background: #f0f3ff; border-left-color: #021b8c; }
.fmcg-msg.msg-green { background: #f0faf4; border-left-color: #10b981; }
.fmcg-msg.msg-amber { background: #fffbeb; border-left-color: #f59e0b; }
.fmcg-msg-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.3rem; }
.msg-blue .fmcg-msg-tag { color: #021b8c; }
.msg-green .fmcg-msg-tag { color: #065f46; }
.msg-amber .fmcg-msg-tag { color: #92400e; }
.fmcg-msg-text { font-size: 0.83rem; color: #333; line-height: 1.5; }
.fmcg-feed-stats { display: flex; border-top: 1px solid #f0f3ff; }
.fmcg-fstat { flex: 1; text-align: center; padding: 0.85rem 0.5rem; border-right: 1px solid #f0f3ff; }
.fmcg-fstat:last-child { border-right: none; }
.fmcg-fstat-num { font-size: 1.2rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
.fmcg-fstat-lbl { font-size: 0.65rem; color: #888; font-weight: 500; margin-top: 2px; }
/* ─── HERO ─── */
.bnk-hero { background: #0a1628; min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0; }
/* subtle grid pattern */
.bnk-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.bnk-hero-glow { position: absolute; top: -100px; right: -100px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, rgba(2,27,140,0.06) 50%, transparent 70%); pointer-events: none; }
.bnk-hero-glow2 { position: absolute; bottom: -150px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(2,27,140,0.15) 0%, transparent 70%); pointer-events: none; }

.bnk-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 30px; padding: 0.38rem 1rem; font-size: 0.78rem; color: #c9a84c; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.4rem; }
.bnk-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #c9a84c; }
.bnk-hero h1 { color: #fff; font-size: 2.85rem; font-weight: 800; line-height: 1.17; margin-bottom: 1.2rem; }
.bnk-hero h1 span { color: #c9a84c; }
.bnk-hero-desc { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; max-width: 500px; }
.bnk-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.bnk-hero-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500; padding: 0.32rem 0.9rem; border-radius: 4px; }
.bnk-btn-gold { background: linear-gradient(135deg, #c9a84c, #e8c96a); color: #0a1628; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2.1rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.bnk-btn-gold:hover { color: #0a1628; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

/* ─── PHONE MOCKUP ─── */
.bnk-phone-wrap { position: relative; display: flex; justify-content: center; }
.bnk-float-badge { position: absolute; background: #fff; border-radius: 12px; padding: 0.6rem 1rem; box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.bnk-float-badge .fb-num { font-size: 1.25rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
.bnk-float-badge .fb-lbl { font-size: 0.68rem; color: #777; font-weight: 500; }
.bnk-fb-a { top: 8%; right: -5%; }
.bnk-fb-b { bottom: 18%; left: -10%; }
.bnk-fb-c { bottom: 4%; right: -6%; }

/* ─── STATS BAR ─── */
.bnk-statsbar { background: linear-gradient(90deg, #0a1628, #021b8c); padding: 2rem 0; }
.bnk-si { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.12); }
.bnk-si:last-child { border-right: none; }
.bnk-si-num { font-size: 2.2rem; font-weight: 800; color: #c9a84c; display: block; line-height: 1; }
.bnk-si-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 0.3rem; }

/* ─── SECTION LABELS ─── */
.b-tag { font-size: 0.75rem; font-weight: 700; color: #c9a84c; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.b-title { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
.b-title span { color: #021b8c; }
.b-body { color: #555; font-size: 0.94rem; line-height: 1.78; }

/* ─── ABOUT ─── */
.bnk-about { padding: 88px 0; background: #fff; }
.ba-check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.ba-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; color: #333; font-weight: 500; }
.ba-chk { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.ba-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ba-mini-stat { background: #f8f5ee; border: 1px solid #e8d98a; border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center; flex: 1; min-width: 90px; }
.ba-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #021b8c; line-height: 1; }
.ba-mini-stat span { font-size: 0.72rem; color: #666; font-weight: 500; }

/* ─── WHY SMS ─── */
.bnk-why { padding: 88px 0; background: #f8f5ee; }
.bw-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid transparent; height: 100%; transition: all 0.3s; }
.bw-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.15); transform: translateY(-4px); }
.bw-icon { width: 54px; height: 54px; border-radius: 14px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.bw-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bw-card p { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── SERVICES ─── */
.bnk-services { padding: 88px 0; background: #0a1628; }
.bnk-services .b-title { color: #fff; }
.bnk-services .b-title span { color: #c9a84c; }
.bnk-services .b-tag { color: #c9a84c; }
.bnk-services .b-body { color: rgba(255,255,255,0.65); }
.bs-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
.bs-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #c9a84c, transparent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.bs-card:hover::before { transform: scaleX(1); }
.bs-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.bs-num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; }
.bs-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bs-card h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.bs-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ─── FEATURES + USE CASES ─── */
.bnk-features { padding: 88px 0; background: #fff; }
.bf-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.bf-icon { width: 44px; height: 44px; border-radius: 10px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bf-row h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.2rem; }
.bf-row p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.6; }
/* use cases */
.bu-item { display: flex; align-items: center; gap: 1rem; background: #f8f5ee; border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.85rem; border: 1px solid #e8d98a; transition: all 0.25s; }
.bu-item:hover { background: #fff; border-color: #c9a84c; box-shadow: 0 4px 16px rgba(201,168,76,0.12); }
.bu-ic { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bu-item span { font-size: 0.9rem; font-weight: 600; color: #111; }

/* ─── BENEFITS ─── */
.bnk-benefits { padding: 88px 0; background: #f8f5ee; }
.bb-card { border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; background: #fff; transition: all 0.3s; border: 2px solid transparent; }
.bb-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.12); transform: translateY(-4px); }
.bb-icon { width: 64px; height: 64px; background: #f8f5ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.bb-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bb-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── HOW IT WORKS ─── */
.bnk-hiw { padding: 88px 0; background: #fff; }
.bh-card { text-align: center; padding: 0 1rem; position: relative; }
.bh-circle { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #0a1628, #021b8c); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; border: 3px solid #c9a84c; }
.bh-connector { position: absolute; top: 38px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #c9a84c, #e8d98a); z-index: 0; }
.bh-card:last-child .bh-connector { display: none; }
.bh-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.bh-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ─── WHY CHOOSE ─── */
.bnk-whychoose { padding: 88px 0; background: #f8f5ee; }
.bc-card { background: #fff; border-radius: 14px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; border: 1px solid #e8d98a; transition: all 0.3s; }
.bc-card:hover { border-color: #c9a84c; box-shadow: 0 8px 24px rgba(201,168,76,0.12); transform: translateX(4px); }
.bc-icon { width: 48px; height: 48px; border-radius: 12px; background: #f8f5ee; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-card h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.25rem; }
.bc-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── TRUST TABLE ─── */
.bnk-table-sec { padding: 88px 0; background: #fff; }
.bnk-tbl { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); font-size: 0.85rem; }
.bnk-tbl thead th { background: #0a1628; color: #c9a84c; font-weight: 700; padding: 1rem 1.2rem; text-align: center; letter-spacing: 0.5px; font-size: 0.82rem; }
.bnk-tbl thead th:first-child { text-align: left; }
.bnk-tbl tbody tr:nth-child(even) { background: #f8f5ee; }
.bnk-tbl tbody tr:nth-child(odd) { background: #fff; }
.bnk-tbl tbody tr:hover { background: #f0ece0; }
.bnk-tbl td, .bnk-tbl th { padding: 0.85rem 1.2rem; border-bottom: 1px solid #eee; }
.bnk-tbl tbody th { font-weight: 500; color: #333; font-size: 0.84rem; text-align: left; }
.bnk-tbl td { text-align: center; }
.tbl-check { width: 22px; height: 22px; }

/* ─── CTA ─── */
.bnk-cta { padding: 88px 0; background: linear-gradient(135deg, #0a1628 0%, #021b8c 100%); position: relative; overflow: hidden; text-align: center; }
.bnk-cta::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(201,168,76,0.06); top: -250px; right: -100px; }
.bnk-cta::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(201,168,76,0.04); bottom: -200px; left: -80px; }
.bnk-cta h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 1rem; }
.bnk-cta p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.bnk-btn-white { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.bnk-btn-white:hover { background: #c9a84c; color: #0a1628; text-decoration: none; transform: translateY(-2px); }
.bnk-btn-ghost { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; border: 2px solid rgba(201,168,76,0.5); display: inline-block; text-decoration: none; transition: all 0.25s; }
.bnk-btn-ghost:hover { border-color: #c9a84c; color: #c9a84c; text-decoration: none; }
.bnk-cta-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 1.4rem; }
.bnk-cta-note a { color: #c9a84c; font-weight: 600; }

/* ─── FAQ ─── */
.bnk-faq { padding: 88px 0; background: #f8f5ee; }
.bfaq-item { background: #fff; border-radius: 12px; border: 1px solid #e8d98a; margin-bottom: 1rem; overflow: hidden; }
.bfaq-q { padding: 1.2rem 1.5rem; font-size: 0.94rem; font-weight: 600; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background 0.2s; }
.bfaq-q:hover { background: #f8f5ee; }
.bfaq-q.bfaq-open { color: #021b8c; background: #f5f3ee; }
.bfaq-chev { transition: transform 0.3s; flex-shrink: 0; }
.bfaq-q.bfaq-open .bfaq-chev { transform: rotate(180deg); }
.bfaq-ans { max-height: 0; overflow: hidden; padding: 0 1.5rem; font-size: 0.87rem; color: #555; line-height: 1.72; transition: max-height 0.35s ease, padding 0.25s; }
.bfaq-ans.bfaq-open-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ─── CLIENTS ─── */
.bnk-clients { padding: 60px 0; background: #fff; overflow: hidden; }
.bnk-clients-track-wrap { overflow: hidden; position: relative; }
.bnk-clients-track-wrap::before, .bnk-clients-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.bnk-clients-track-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.bnk-clients-track-wrap::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.bnk-clients-track { display: flex; gap: 2.5rem; animation: bscroll 35s linear infinite; width: max-content; align-items: center; }
.bnk-clients-track:hover { animation-play-state: paused; }
.bnk-client-logo { height: 44px; width: auto; filter: grayscale(100%) opacity(0.55); transition: all 0.3s; flex-shrink: 0; }
.bnk-client-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.08); }
@keyframes bscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* ─── HERO ─── */
.ins-hero { background: #0a1628; min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0; }
.ins-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.ins-hero-glow { position: absolute; top: -100px; right: -100px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, rgba(2,27,140,0.06) 50%, transparent 70%); pointer-events: none; }
.ins-hero-glow2 { position: absolute; bottom: -150px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(2,27,140,0.15) 0%, transparent 70%); pointer-events: none; }

.ins-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 30px; padding: 0.38rem 1rem; font-size: 0.78rem; color: #c9a84c; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.4rem; }
.ins-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #c9a84c; }
.ins-hero h1 { color: #fff; font-size: 2.85rem; font-weight: 800; line-height: 1.17; margin-bottom: 1.2rem; }
.ins-hero h1 span { color: #c9a84c; }
.ins-hero-desc { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; max-width: 500px; }
.ins-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.ins-hero-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500; padding: 0.32rem 0.9rem; border-radius: 4px; }
.ins-btn-gold { background: linear-gradient(135deg, #c9a84c, #e8c96a); color: #0a1628; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2.1rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.ins-btn-gold:hover { color: #0a1628; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

/* ─── PHONE MOCKUP ─── */
.ins-phone-wrap { position: relative; display: flex; justify-content: center; }
.ins-float-badge { position: absolute; background: #fff; border-radius: 12px; padding: 0.6rem 1rem; box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.ins-float-badge .fb-num { font-size: 1.25rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
.ins-float-badge .fb-lbl { font-size: 0.68rem; color: #777; font-weight: 500; }
.ins-fb-a { top: 8%; right: -5%; }
.ins-fb-b { bottom: 18%; left: -10%; }
.ins-fb-c { bottom: 4%; right: -6%; }

/* ─── STATS BAR ─── */
.ins-statsbar { background: linear-gradient(90deg, #0a1628, #021b8c); padding: 2rem 0; }
.ins-si { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.12); }
.ins-si:last-child { border-right: none; }
.ins-si-num { font-size: 2.2rem; font-weight: 800; color: #c9a84c; display: block; line-height: 1; }
.ins-si-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 0.3rem; }

/* ─── SECTION LABELS ─── */
.b-tag { font-size: 0.75rem; font-weight: 700; color: #c9a84c; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.b-title { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
.b-title span { color: #021b8c; }
.b-body { color: #555; font-size: 0.94rem; line-height: 1.78; }

/* ─── ABOUT ─── */
.ins-about { padding: 88px 0; background: #fff; }
.ba-check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.ba-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; color: #333; font-weight: 500; }
.ba-chk { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.ba-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ba-mini-stat { background: #f8f5ee; border: 1px solid #e8d98a; border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center; flex: 1; min-width: 90px; }
.ba-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #021b8c; line-height: 1; }
.ba-mini-stat span { font-size: 0.72rem; color: #666; font-weight: 500; }

/* ─── WHY SMS ─── */
.ins-why { padding: 88px 0; background: #f8f5ee; }
.bw-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid transparent; height: 100%; transition: all 0.3s; }
.bw-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.15); transform: translateY(-4px); }
.bw-icon { width: 54px; height: 54px; border-radius: 14px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.bw-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bw-card p { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── SERVICES ─── */
.ins-services { padding: 88px 0; background: #0a1628; }
.ins-services .b-title { color: #fff; }
.ins-services .b-title span { color: #c9a84c; }
.ins-services .b-tag { color: #c9a84c; }
.ins-services .b-body { color: rgba(255,255,255,0.65); }
.bs-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
.bs-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #c9a84c, transparent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.bs-card:hover::before { transform: scaleX(1); }
.bs-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.bs-num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; }
.bs-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bs-card h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.bs-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ─── FEATURES + USE CASES ─── */
.ins-features { padding: 88px 0; background: #fff; }
.bf-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.bf-icon { width: 44px; height: 44px; border-radius: 10px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bf-row h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.2rem; }
.bf-row p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.6; }
.bu-item { display: flex; align-items: center; gap: 1rem; background: #f8f5ee; border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.85rem; border: 1px solid #e8d98a; transition: all 0.25s; }
.bu-item:hover { background: #fff; border-color: #c9a84c; box-shadow: 0 4px 16px rgba(201,168,76,0.12); }
.bu-ic { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bu-item span { font-size: 0.9rem; font-weight: 600; color: #111; }

/* ─── BENEFITS ─── */
.ins-benefits { padding: 88px 0; background: #f8f5ee; }
.bb-card { border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; background: #fff; transition: all 0.3s; border: 2px solid transparent; }
.bb-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.12); transform: translateY(-4px); }
.bb-icon { width: 64px; height: 64px; background: #f8f5ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.bb-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bb-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── HOW IT WORKS ─── */
.ins-hiw { padding: 88px 0; background: #fff; }
.bh-card { text-align: center; padding: 0 1rem; position: relative; }
.bh-circle { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #0a1628, #021b8c); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; border: 3px solid #c9a84c; }
.bh-connector { position: absolute; top: 38px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #c9a84c, #e8d98a); z-index: 0; }
.bh-card:last-child .bh-connector { display: none; }
.bh-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.bh-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ─── WHY CHOOSE ─── */
.ins-whychoose { padding: 88px 0; background: #f8f5ee; }
.bc-card { background: #fff; border-radius: 14px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; border: 1px solid #e8d98a; transition: all 0.3s; }
.bc-card:hover { border-color: #c9a84c; box-shadow: 0 8px 24px rgba(201,168,76,0.12); transform: translateX(4px); }
.bc-icon { width: 48px; height: 48px; border-radius: 12px; background: #f8f5ee; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-card h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.25rem; }
.bc-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── TRUST TABLE ─── */
.ins-table-sec { padding: 88px 0; background: #fff; }
.ins-tbl { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); font-size: 0.85rem; }
.ins-tbl thead th { background: #0a1628; color: #c9a84c; font-weight: 700; padding: 1rem 1.2rem; text-align: center; letter-spacing: 0.5px; font-size: 0.82rem; }
.ins-tbl thead th:first-child { text-align: left; }
.ins-tbl tbody tr:nth-child(even) { background: #f8f5ee; }
.ins-tbl tbody tr:nth-child(odd) { background: #fff; }
.ins-tbl tbody tr:hover { background: #f0ece0; }
.ins-tbl td, .ins-tbl th { padding: 0.85rem 1.2rem; border-bottom: 1px solid #eee; }
.ins-tbl tbody th { font-weight: 500; color: #333; font-size: 0.84rem; text-align: left; }
.ins-tbl td { text-align: center; }
.tbl-check { width: 22px; height: 22px; }

/* ─── CTA ─── */
.ins-cta { padding: 88px 0; background: linear-gradient(135deg, #0a1628 0%, #021b8c 100%); position: relative; overflow: hidden; text-align: center; }
.ins-cta::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(201,168,76,0.06); top: -250px; right: -100px; }
.ins-cta::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(201,168,76,0.04); bottom: -200px; left: -80px; }
.ins-cta h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 1rem; }
.ins-cta p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.ins-btn-white { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.ins-btn-white:hover { background: #c9a84c; color: #0a1628; text-decoration: none; transform: translateY(-2px); }
.ins-btn-ghost { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; border: 2px solid rgba(201,168,76,0.5); display: inline-block; text-decoration: none; transition: all 0.25s; }
.ins-btn-ghost:hover { border-color: #c9a84c; color: #c9a84c; text-decoration: none; }
.ins-cta-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 1.4rem; }
.ins-cta-note a { color: #c9a84c; font-weight: 600; }
/* ─── HERO ─── */
.ret-hero { background: #0a1628; min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0; }
.ret-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.ret-hero-glow { position: absolute; top: -100px; right: -100px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, rgba(2,27,140,0.06) 50%, transparent 70%); pointer-events: none; }
.ret-hero-glow2 { position: absolute; bottom: -150px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(2,27,140,0.15) 0%, transparent 70%); pointer-events: none; }

.ret-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 30px; padding: 0.38rem 1rem; font-size: 0.78rem; color: #c9a84c; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.4rem; }
.ret-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #c9a84c; }
.ret-hero h1 { color: #fff; font-size: 2.85rem; font-weight: 800; line-height: 1.17; margin-bottom: 1.2rem; }
.ret-hero h1 span { color: #c9a84c; }
.ret-hero-desc { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.78; margin-bottom: 2rem; max-width: 500px; }
.ret-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.ret-hero-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500; padding: 0.32rem 0.9rem; border-radius: 4px; }
.ret-btn-gold { background: linear-gradient(135deg, #c9a84c, #e8c96a); color: #0a1628; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2.1rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.ret-btn-gold:hover { color: #0a1628; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

/* ─── PHONE MOCKUP ─── */
.ret-phone-wrap { position: relative; display: flex; justify-content: center; }
.ret-float-badge { position: absolute; background: #fff; border-radius: 12px; padding: 0.6rem 1rem; box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.ret-float-badge .fb-num { font-size: 1.25rem; font-weight: 800; color: #021b8c; display: block; line-height: 1; }
.ret-float-badge .fb-lbl { font-size: 0.68rem; color: #777; font-weight: 500; }
.ret-fb-a { top: 8%; right: -5%; }
.ret-fb-b { bottom: 18%; left: -10%; }
.ret-fb-c { bottom: 4%; right: -6%; }

/* ─── STATS BAR ─── */
.ret-statsbar { background: linear-gradient(90deg, #0a1628, #021b8c); padding: 2rem 0; }
.ret-si { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.12); }
.ret-si:last-child { border-right: none; }
.ret-si-num { font-size: 2.2rem; font-weight: 800; color: #c9a84c; display: block; line-height: 1; }
.ret-si-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 0.3rem; }

/* ─── SECTION LABELS ─── */
.b-tag { font-size: 0.75rem; font-weight: 700; color: #c9a84c; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.b-title { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; line-height: 1.3; }
.b-title span { color: #021b8c; }
.b-body { color: #555; font-size: 0.94rem; line-height: 1.78; }

/* ─── ABOUT ─── */
.ret-about { padding: 88px 0; background: #fff; }
.ba-check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.ba-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9rem; color: #333; font-weight: 500; }
.ba-chk { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.ba-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ba-mini-stat { background: #f8f5ee; border: 1px solid #e8d98a; border-radius: 10px; padding: 0.8rem 1.2rem; text-align: center; flex: 1; min-width: 90px; }
.ba-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #021b8c; line-height: 1; }
.ba-mini-stat span { font-size: 0.72rem; color: #666; font-weight: 500; }

/* ─── WHY SMS ─── */
.ret-why { padding: 88px 0; background: #f8f5ee; }
.bw-card { background: #fff; border-radius: 14px; padding: 2rem 1.5rem; border: 2px solid transparent; height: 100%; transition: all 0.3s; }
.bw-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.15); transform: translateY(-4px); }
.bw-icon { width: 54px; height: 54px; border-radius: 14px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.bw-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bw-card p { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── SERVICES ─── */
.ret-services { padding: 88px 0; background: #0a1628; }
.ret-services .b-title { color: #fff; }
.ret-services .b-title span { color: #c9a84c; }
.ret-services .b-tag { color: #c9a84c; }
.ret-services .b-body { color: rgba(255,255,255,0.65); }
.bs-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
.bs-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #c9a84c, transparent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.bs-card:hover::before { transform: scaleX(1); }
.bs-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.bs-num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; }
.bs-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bs-card h5 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.bs-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ─── FEATURES + USE CASES ─── */
.ret-features { padding: 88px 0; background: #fff; }
.bf-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.bf-icon { width: 44px; height: 44px; border-radius: 10px; background: #f8f5ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bf-row h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.2rem; }
.bf-row p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.6; }
.bu-item { display: flex; align-items: center; gap: 1rem; background: #f8f5ee; border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.85rem; border: 1px solid #e8d98a; transition: all 0.25s; }
.bu-item:hover { background: #fff; border-color: #c9a84c; box-shadow: 0 4px 16px rgba(201,168,76,0.12); }
.bu-ic { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bu-item span { font-size: 0.9rem; font-weight: 600; color: #111; }

/* ─── BENEFITS ─── */
.ret-benefits { padding: 88px 0; background: #f8f5ee; }
.bb-card { border-radius: 14px; padding: 2rem 1.5rem; height: 100%; text-align: center; background: #fff; transition: all 0.3s; border: 2px solid transparent; }
.bb-card:hover { border-color: #c9a84c; box-shadow: 0 12px 32px rgba(201,168,76,0.12); transform: translateY(-4px); }
.bb-icon { width: 64px; height: 64px; background: #f8f5ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.bb-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.bb-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── HOW IT WORKS ─── */
.ret-hiw { padding: 88px 0; background: #fff; }
.bh-card { text-align: center; padding: 0 1rem; position: relative; }
.bh-circle { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #0a1628, #021b8c); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; border: 3px solid #c9a84c; }
.bh-connector { position: absolute; top: 38px; left: 50%; right: -50%; height: 2px; background: linear-gradient(90deg, #c9a84c, #e8d98a); z-index: 0; }
.bh-card:last-child .bh-connector { display: none; }
.bh-card h5 { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.bh-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ─── WHY CHOOSE ─── */
.ret-whychoose { padding: 88px 0; background: #f8f5ee; }
.bc-card { background: #fff; border-radius: 14px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; border: 1px solid #e8d98a; transition: all 0.3s; }
.bc-card:hover { border-color: #c9a84c; box-shadow: 0 8px 24px rgba(201,168,76,0.12); transform: translateX(4px); }
.bc-icon { width: 48px; height: 48px; border-radius: 12px; background: #f8f5ee; border: 1px solid #e8d98a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-card h6 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.25rem; }
.bc-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* ─── TRUST TABLE ─── */
.ret-table-sec { padding: 88px 0; background: #fff; }
.ret-tbl { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); font-size: 0.85rem; }
.ret-tbl thead th { background: #0a1628; color: #c9a84c; font-weight: 700; padding: 1rem 1.2rem; letter-spacing: 0.5px; font-size: 0.82rem; }
.ret-tbl thead th:first-child { text-align: left; }
.ret-tbl tbody tr:nth-child(even) { background: #f8f5ee; }
.ret-tbl tbody tr:nth-child(odd) { background: #fff; }
.ret-tbl tbody tr:hover { background: #f0ece0; }
.ret-tbl td, .ret-tbl th { padding: 0.85rem 1.2rem; border-bottom: 1px solid #eee; }
.ret-tbl tbody th { font-weight: 500; color: #333; font-size: 0.84rem; text-align: left; }
.tbl-check { width: 22px; height: 22px; }

/* ─── CTA ─── */
.ret-cta { padding: 88px 0; background: linear-gradient(135deg, #0a1628 0%, #021b8c 100%); position: relative; overflow: hidden; text-align: center; }
.ret-cta::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(201,168,76,0.06); top: -250px; right: -100px; }
.ret-cta::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(201,168,76,0.04); bottom: -200px; left: -80px; }
.ret-cta h2 { color: #fff; font-size: 2.3rem; font-weight: 800; margin-bottom: 1rem; }
.ret-cta p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.ret-btn-white { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; display: inline-block; text-decoration: none; transition: all 0.25s; }
.ret-btn-white:hover { background: #c9a84c; color: #0a1628; text-decoration: none; transform: translateY(-2px); }
.ret-btn-ghost { background: transparent; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.82rem 2rem; border-radius: 8px; border: 2px solid rgba(201,168,76,0.5); display: inline-block; text-decoration: none; transition: all 0.25s; }
.ret-btn-ghost:hover { border-color: #c9a84c; color: #c9a84c; text-decoration: none; }
.ret-cta-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 1.4rem; }
.ret-cta-note a { color: #c9a84c; font-weight: 600; }
/* HERO */
.hero-section { background: linear-gradient(135deg, #021b8c 0%, #0a2fa8 60%, #1040c8 100%); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0; }
.hero-bg-shape { position: absolute; right: -80px; top: -80px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.hero-bg-shape2 { position: absolute; left: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.03); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 22px; letter-spacing: 0.5px; }
.hero-title { font-size: 3.2rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-title span { color: #7ecbff; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 30px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.78rem; font-weight: 500; padding: 6px 14px; border-radius: 4px; }
.hero-btn-main { background: #fff; color: #021b8c; font-size: 0.9rem; font-weight: 700; padding: 14px 32px; border-radius: 8px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.hero-btn-main:hover { background: #e8eeff; color: #021b8c; }
.hero-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.hero-card-icon { width: 44px; height: 44px; background: #021b8c; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hero-card-title { font-size: 0.95rem; font-weight: 700; color: #111; }
.hero-card-sub { font-size: 0.75rem; color: #888; }
.sms-pill { background: #f5f7ff; border-left: 3px solid #021b8c; border-radius: 0 8px 8px 0; padding: 12px 14px; margin-bottom: 12px; }
.sms-pill-label { font-size: 0.68rem; font-weight: 700; color: #021b8c; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.sms-pill-text { font-size: 0.8rem; color: #333; line-height: 1.5; }
.sms-pill-text strong { color: #021b8c; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid #f0f0f0; padding-top: 16px; margin-top: 8px; }
.hero-stat { flex: 1; text-align: center; border-right: 1px solid #f0f0f0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 1.3rem; font-weight: 800; color: #021b8c; }
.hero-stat-lbl { font-size: 0.65rem; color: #888; }
/* BREADCRUMB */
.breadcrumb-bar { background: #f5f7ff; padding: 12px 0; border-bottom: 1px solid #e8ecff; }
.breadcrumb-bar ol { margin: 0; padding: 0; list-style: none; display: flex; gap: 8px; align-items: center; font-size: 0.8rem; }
.breadcrumb-bar a { color: #021b8c; text-decoration: none; font-weight: 500; }
.breadcrumb-bar .bc-sep { color: #aaa; }
.breadcrumb-bar .bc-cur { color: #555; }

/* SECTION COMMON */
.sec-pad { padding: 80px 0; }
.sec-pad-sm { padding: 60px 0; }
.sec-label { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #021b8c; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.sec-divider { width: 48px; height: 3px; background: #021b8c; border-radius: 2px; margin-bottom: 18px; }
.sec-divider-center { margin-left: auto; margin-right: auto; }
.sec-title { font-size: 2.2rem; font-weight: 800; color: #111; line-height: 1.25; margin-bottom: 16px; }
.sec-title span { color: #021b8c; }
.sec-desc { font-size: 0.93rem; color: #555; line-height: 1.8; }

/* ABOUT */
.about-section { background: #fff; }
.stat-box { background: #f5f7ff; border-radius: 14px; padding: 28px; }
.stat-item-box { background: #fff; border-radius: 10px; padding: 22px; text-align: center; box-shadow: 0 2px 12px rgba(2,27,140,0.07); border-bottom: 3px solid #021b8c; }
.stat-item-num { font-size: 2rem; font-weight: 800; color: #021b8c; }
.stat-item-lbl { font-size: 0.78rem; color: #555; margin-top: 4px; }

/* WHY SMS */
.why-section { background: #f9faff; }
.why-card { background: #fff; border-radius: 12px; padding: 28px 22px; text-align: center; border: 1px solid #e8ecff; transition: all 0.25s; height: 100%; }
.why-card:hover { border-color: #021b8c; box-shadow: 0 8px 30px rgba(2,27,140,0.1); transform: translateY(-4px); }
.why-icon-wrap { width: 58px; height: 58px; background: #f0f4ff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.why-title { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.why-desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* SERVICES */
.services-section { background: #021b8c; }
.services-section .sec-title { color: #fff; }
.services-section .sec-title span { color: #7ecbff; }
.services-section .sec-desc { color: rgba(255,255,255,0.75); }
.services-section .sec-label { color: rgba(255,255,255,0.7); }
.svc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px; height: 100%; transition: all 0.25s; position: relative; overflow: hidden; }
.svc-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.svc-num { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; }
.svc-icon-wrap { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* FEATURES + USECASES */
.features-section { background: #fff; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.feat-check { width: 26px; height: 26px; background: #021b8c; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-text { font-size: 0.88rem; color: #333; line-height: 1.7; }
.feat-text strong { color: #111; display: block; font-size: 0.9rem; margin-bottom: 2px; }
.usecase-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 10px; background: #f5f7ff; border-left: 3px solid #021b8c; margin-bottom: 12px; font-size: 0.88rem; font-weight: 600; color: #111; }
.usecase-icon { width: 38px; height: 38px; background: #021b8c; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* BENEFITS */
.benefits-section { background: #f9faff; }
.benefit-card { background: #fff; border-radius: 14px; padding: 30px 24px; text-align: center; box-shadow: 0 4px 20px rgba(2,27,140,0.06); height: 100%; border-top: 4px solid #021b8c; }
.benefit-icon-wrap { width: 64px; height: 64px; background: #f0f4ff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.benefit-title { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 10px; }
.benefit-desc { font-size: 0.83rem; color: #666; line-height: 1.7; }

/* HOW IT WORKS */
.how-section { background: #021b8c; }
.how-section .sec-title { color: #fff; }
.how-section .sec-title span { color: #7ecbff; }
.how-section .sec-desc { color: rgba(255,255,255,0.75); }
.how-section .sec-label { color: rgba(255,255,255,0.7); }
.step-card -2{ text-align: center; padding: 30px 20px; position: relative; }
.step-num-wrap-2 { width: 64px; height: 64px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: 800; color: #fff; }
.step-title-2 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.step-arrow { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); }

/* WHY CHOOSE */
.choose-section { background: #fff; }
.choose-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-radius: 12px; border: 1px solid #e8ecff; margin-bottom: 16px; transition: all 0.2s; }
.choose-card:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.08); }
.choose-icon-wrap { width: 50px; height: 50px; background: #f0f4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.choose-title { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 5px; }
.choose-desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #021b8c, #0a2fa8); padding: 80px 0; text-align: center; }
.cta-title { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-btn-main { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.92rem; padding: 14px 32px; border-radius: 8px; text-decoration: none; display: inline-block; margin: 6px; transition: all 0.2s; }
.cta-btn-main:hover { background: #e8eeff; color: #021b8c; }
.cta-btn-out { background: transparent; color: #fff; font-weight: 700; font-size: 0.92rem; padding: 13px 32px; border-radius: 8px; text-decoration: none; display: inline-block; border: 2px solid rgba(255,255,255,0.5); margin: 6px; transition: all 0.2s; }
.cta-btn-out:hover { border-color: #fff; color: #fff; }
.cta-info { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 20px; }
.cta-info a { color: #fff; text-decoration: underline; }
/* HERO */
.ad-hero-section { background: linear-gradient(135deg, #021b8c 0%, #0a2fa8 60%, #1040c8 100%); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0; }
.ad-hero-bg-shape { position: absolute; right: -80px; top: -80px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.ad-hero-bg-shape2 { position: absolute; left: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.03); pointer-events: none; }
.ad-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 22px; letter-spacing: 0.5px; }
.ad-hero-title { font-size: 3.2rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.ad-hero-title span { color: #7ecbff; }
.ad-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 30px; }
.ad-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.ad-hero-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.78rem; font-weight: 500; padding: 6px 14px; border-radius: 4px; }
.ad-hero-btn-main { background: #fff; color: #021b8c; font-size: 0.9rem; font-weight: 700; padding: 14px 32px; border-radius: 8px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.ad-hero-btn-main:hover { background: #e8eeff; color: #021b8c; }
.ad-hero-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.ad-hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.ad-hero-card-icon { width: 44px; height: 44px; background: #021b8c; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ad-hero-card-title { font-size: 0.95rem; font-weight: 700; color: #111; }
.ad-hero-card-sub { font-size: 0.75rem; color: #888; }
.ad-sms-pill { background: #f5f7ff; border-left: 3px solid #021b8c; border-radius: 0 8px 8px 0; padding: 12px 14px; margin-bottom: 12px; }
.ad-sms-pill-label { font-size: 0.68rem; font-weight: 700; color: #021b8c; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ad-sms-pill-text { font-size: 0.8rem; color: #333; line-height: 1.5; }
.ad-sms-pill-text strong { color: #021b8c; }
.ad-hero-stats { display: flex; gap: 0; border-top: 1px solid #f0f0f0; padding-top: 16px; margin-top: 8px; }
.ad-hero-stat { flex: 1; text-align: center; border-right: 1px solid #f0f0f0; }
.ad-hero-stat:last-child { border-right: none; }
.ad-hero-stat-num { font-size: 1.3rem; font-weight: 800; color: #021b8c; }
.ad-hero-stat-lbl { font-size: 0.65rem; color: #888; }

/* BREADCRUMB */
.ad-breadcrumb-bar { background: #f5f7ff; padding: 12px 0; border-bottom: 1px solid #e8ecff; }
.ad-breadcrumb-bar ol { margin: 0; padding: 0; list-style: none; display: flex; gap: 8px; align-items: center; font-size: 0.8rem; }
.ad-breadcrumb-bar a { color: #021b8c; text-decoration: none; font-weight: 500; }
.ad-breadcrumb-bar .ad-bc-sep { color: #aaa; }
.ad-breadcrumb-bar .ad-bc-cur { color: #555; }

/* SECTION COMMON */
.ad-sec-pad { padding: 80px 0; }
.ad-sec-pad-sm { padding: 60px 0; }
.ad-sec-label { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #021b8c; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.ad-sec-divider { width: 48px; height: 3px; background: #021b8c; border-radius: 2px; margin-bottom: 18px; }
.ad-sec-divider-center { margin-left: auto; margin-right: auto; }
.ad-sec-title { font-size: 2.2rem; font-weight: 800; color: #111; line-height: 1.25; margin-bottom: 16px; }
.ad-sec-title span { color: #021b8c; }
.ad-sec-desc { font-size: 0.93rem; color: #555; line-height: 1.8; }

/* ABOUT */
.ad-about-section { background: #fff; }
.ad-stat-box { background: #f5f7ff; border-radius: 14px; padding: 28px; }
.ad-stat-item-box { background: #fff; border-radius: 10px; padding: 22px; text-align: center; box-shadow: 0 2px 12px rgba(2,27,140,0.07); border-bottom: 3px solid #021b8c; }
.ad-stat-item-num { font-size: 2rem; font-weight: 800; color: #021b8c; }
.ad-stat-item-lbl { font-size: 0.78rem; color: #555; margin-top: 4px; }

/* WHY SMS */
.ad-why-section { background: #f9faff; }
.ad-why-card { background: #fff; border-radius: 12px; padding: 28px 22px; text-align: center; border: 1px solid #e8ecff; transition: all 0.25s; height: 100%; }
.ad-why-card:hover { border-color: #021b8c; box-shadow: 0 8px 30px rgba(2,27,140,0.1); transform: translateY(-4px); }
.ad-why-icon-wrap { width: 58px; height: 58px; background: #f0f4ff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ad-why-title { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.ad-why-desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* SERVICES */
.ad-services-section { background: #021b8c; }
.ad-services-section .ad-sec-title { color: #fff; }
.ad-services-section .ad-sec-title span { color: #7ecbff; }
.ad-services-section .ad-sec-desc { color: rgba(255,255,255,0.75); }
.ad-services-section .ad-sec-label { color: rgba(255,255,255,0.7); }
.ad-svc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px; height: 100%; transition: all 0.25s; position: relative; overflow: hidden; }
.ad-svc-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.ad-svc-num { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; }
.ad-svc-icon-wrap { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ad-svc-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ad-svc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* FEATURES + USECASES */
.ad-features-section { background: #fff; }
.ad-feat-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ad-feat-check { width: 26px; height: 26px; background: #021b8c; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ad-feat-text { font-size: 0.88rem; color: #333; line-height: 1.7; }
.ad-feat-text strong { color: #111; display: block; font-size: 0.9rem; margin-bottom: 2px; }
.ad-usecase-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 10px; background: #f5f7ff; border-left: 3px solid #021b8c; margin-bottom: 12px; font-size: 0.88rem; font-weight: 600; color: #111; }
.ad-usecase-icon { width: 38px; height: 38px; background: #021b8c; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* BENEFITS */
.ad-benefits-section { background: #f9faff; }
.ad-benefit-card { background: #fff; border-radius: 14px; padding: 30px 24px; text-align: center; box-shadow: 0 4px 20px rgba(2,27,140,0.06); height: 100%; border-top: 4px solid #021b8c; }
.ad-benefit-icon-wrap { width: 64px; height: 64px; background: #f0f4ff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.ad-benefit-title { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 10px; }
.ad-benefit-desc { font-size: 0.83rem; color: #666; line-height: 1.7; }

/* HOW IT WORKS */
.ad-how-section { background: #021b8c; }
.ad-how-section .ad-sec-title { color: #fff; }
.ad-how-section .ad-sec-title span { color: #7ecbff; }
.ad-how-section .ad-sec-desc { color: rgba(255,255,255,0.75); }
.ad-how-section .ad-sec-label { color: rgba(255,255,255,0.7); }
.ad-step-card { text-align: center; padding: 30px 20px; position: relative; }
.ad-step-num-wrap { width: 64px; height: 64px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: 800; color: #fff; }
.ad-step-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ad-step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.ad-step-arrow { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); }

/* WHY CHOOSE */
.ad-choose-section { background: #fff; }
.ad-choose-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-radius: 12px; border: 1px solid #e8ecff; margin-bottom: 16px; transition: all 0.2s; }
.ad-choose-card:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.08); }
.ad-choose-icon-wrap { width: 50px; height: 50px; background: #f0f4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ad-choose-title { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 5px; }
.ad-choose-desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* CTA */
.ad-cta-section { background: linear-gradient(135deg, #021b8c, #0a2fa8); padding: 80px 0; text-align: center; }
.ad-cta-title { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.ad-cta-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.ad-cta-btn-main { background: #fff; color: #021b8c; font-weight: 700; font-size: 0.92rem; padding: 14px 32px; border-radius: 8px; text-decoration: none; display: inline-block; margin: 6px; transition: all 0.2s; }
.ad-cta-btn-main:hover { background: #e8eeff; color: #021b8c; }
.ad-cta-btn-out { background: transparent; color: #fff; font-weight: 700; font-size: 0.92rem; padding: 13px 32px; border-radius: 8px; text-decoration: none; display: inline-block; border: 2px solid rgba(255,255,255,0.5); margin: 6px; transition: all 0.2s; }
.ad-cta-btn-out:hover { border-color: #fff; color: #fff; }
.ad-cta-info { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 20px; }
.ad-cta-info a { color: #fff; text-decoration: underline; }
/* HERO */
.tsms-hero{background:linear-gradient(135deg,#021b8c 0%,#0a2db5 60%,#0d35cc 100%);padding:80px 0 60px;overflow:hidden;position:relative;}
.tsms-hero::before{content:'';position:absolute;top:-80px;right:-80px;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,0.04);pointer-events:none;}
.tsms-hero::after{content:'';position:absolute;bottom:-60px;left:-60px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,0.03);pointer-events:none;}
.tsms-hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);color:#fff;padding:7px 18px;border-radius:50px;font-size:13px;font-weight:500;margin-bottom:20px;}
.tsms-hero h1{font-size:48px;font-weight:800;color:#fff;line-height:1.15;margin-bottom:18px;}
.tsms-hero h1 span{color:#7eb8ff;}
.tsms-hero-sub{color:rgba(255,255,255,0.8);font-size:16px;line-height:1.7;margin-bottom:24px;max-width:540px;}
.tsms-chip-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px;}
.tsms-chip{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);color:#fff;padding:6px 16px;border-radius:50px;font-size:13px;font-weight:500;}
.tsms-cta-btn{display:inline-block;background:#fff;color:#021b8c;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none;transition:transform 0.2s,box-shadow 0.2s;}
.tsms-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2);color:#021b8c;text-decoration:none;}
.tsms-phone-card{background:#fff;border-radius:20px;padding:28px;box-shadow:0 20px 60px rgba(0,0,0,0.25);position:relative;}
.tsms-phone-card-head{display:flex;align-items:center;gap:12px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #eef0f8;}
.tsms-phone-icon{width:42px;height:42px;background:#021b8c;border-radius:10px;display:flex;align-items:center;justify-content:center;}
.tsms-card-title{font-size:15px;font-weight:700;color:#021b8c;}
.tsms-card-sub{font-size:12px;color:#888;}
.tsms-sms-bubble{background:#f4f6ff;border-left:3px solid #021b8c;border-radius:0 10px 10px 0;padding:12px 16px;margin-bottom:10px;font-size:13px;color:#333;}
.tsms-sms-tag{font-size:10px;font-weight:700;color:#021b8c;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:5px;}
.tsms-sms-amt{color:#021b8c;font-weight:700;}
.tsms-stat-row{display:flex;gap:12px;margin-top:16px;}
.tsms-stat-box{flex:1;background:#f4f6ff;border-radius:10px;padding:12px 8px;text-align:center;}
.tsms-stat-num{font-size:20px;font-weight:800;color:#021b8c;}
.tsms-stat-lbl{font-size:10px;color:#888;margin-top:2px;}

/* BREADCRUMB */
.tsms-breadcrumb{background:#f4f6ff;padding:14px 0;}
.tsms-breadcrumb nav{font-size:13px;color:#888;}
.tsms-breadcrumb a{color:#021b8c;text-decoration:none;font-weight:500;}
.tsms-breadcrumb span{color:#111;font-weight:600;}

/* SECTION COMMONS */
.tsms-section{padding:80px 0;}
.tsms-section-alt{padding:80px 0;background:#f8f9ff;}
.tsms-label{display:inline-block;background:#e8ebff;color:#021b8c;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;padding:5px 14px;border-radius:50px;margin-bottom:14px;}
.tsms-divider{width:48px;height:4px;background:#021b8c;border-radius:2px;margin-bottom:18px;}
.tsms-divider-center{margin-left:auto;margin-right:auto;}
.tsms-section-title{font-size:36px;font-weight:800;color:#111;line-height:1.25;margin-bottom:14px;}
.tsms-section-title span{color:#021b8c;}
.tsms-section-desc{font-size:15px;color:#555;line-height:1.8;max-width:620px;}

/* ABOUT STATS */
.tsms-about-stat-grid{background:#fff;border-radius:16px;padding:32px;box-shadow:0 4px 30px rgba(2,27,140,0.08);}
.tsms-about-stat{padding:20px;border-radius:12px;background:#f4f6ff;text-align:center;}
.tsms-about-num{font-size:36px;font-weight:800;color:#021b8c;}
.tsms-about-lbl{font-size:13px;color:#555;margin-top:4px;font-weight:500;}

/* WHY CARDS */
.tsms-why-card{background:#fff;border:1px solid #e8ebff;border-radius:14px;padding:28px 20px;text-align:center;height:100%;transition:box-shadow 0.2s,border-color 0.2s;}
.tsms-why-card:hover{box-shadow:0 8px 30px rgba(2,27,140,0.1);border-color:#021b8c;}
.tsms-why-icon{width:56px;height:56px;background:#e8ebff;border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;}
.tsms-why-title{font-size:15px;font-weight:700;color:#111;margin-bottom:8px;}
.tsms-why-desc{font-size:13px;color:#666;line-height:1.7;}

/* SERVICE CARDS */
.tsms-service-section{padding:80px 0;background:linear-gradient(135deg,#021b8c,#0a2db5);}
.tsms-service-card{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:30px 24px;height:100%;transition:background 0.2s;}
.tsms-service-card:hover{background:rgba(255,255,255,0.1);}
.tsms-service-num{font-size:12px;font-weight:700;color:rgba(255,255,255,0.4);text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;}
.tsms-service-icon{width:48px;height:48px;background:rgba(255,255,255,0.1);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.tsms-service-title{font-size:16px;font-weight:700;color:#fff;margin-bottom:10px;}
.tsms-service-desc{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.7;}

/* FEATURES + USECASES */
.tsms-feature-item{display:flex;gap:14px;align-items:flex-start;padding:16px 0;border-bottom:1px solid #eef0f8;}
.tsms-feature-item:last-child{border-bottom:none;}
.tsms-check-box{width:28px;height:28px;background:#021b8c;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;}
.tsms-feature-text strong{display:block;font-size:14px;font-weight:700;color:#111;margin-bottom:3px;}
.tsms-feature-text span{font-size:13px;color:#666;}
.tsms-usecase-item{display:flex;align-items:center;gap:14px;padding:14px 18px;background:#f4f6ff;border-radius:10px;margin-bottom:10px;border-left:3px solid #021b8c;}
.tsms-usecase-icon{width:36px;height:36px;background:#021b8c;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.tsms-usecase-text{font-size:14px;font-weight:600;color:#111;}

/* BENEFITS */
.tsms-benefit-card{background:#fff;border-radius:16px;padding:30px 24px;height:100%;border:1px solid #eef0f8;transition:box-shadow 0.2s,border-color 0.2s;}
.tsms-benefit-card:hover{box-shadow:0 8px 30px rgba(2,27,140,0.1);border-color:#021b8c;}
.tsms-benefit-icon{width:52px;height:52px;background:#e8ebff;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.tsms-benefit-title{font-size:15px;font-weight:700;color:#111;margin-bottom:10px;}
.tsms-benefit-desc{font-size:13px;color:#666;line-height:1.7;}

/* HOW IT WORKS */
.tsms-how-section{padding:80px 0;background:#f8f9ff;}
.tsms-step-card{background:#fff;border-radius:16px;padding:30px 24px;text-align:center;height:100%;position:relative;border:1px solid #eef0f8;}
.tsms-step-num{width:48px;height:48px;background:#021b8c;border-radius:50%;color:#fff;font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.tsms-step-icon{width:48px;height:48px;background:#e8ebff;border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.tsms-step-title{font-size:15px;font-weight:700;color:#111;margin-bottom:8px;}
.tsms-step-desc{font-size:13px;color:#666;line-height:1.7;}

/* WHY CHOOSE */
.tsms-choose-card{display:flex;gap:16px;align-items:flex-start;padding:24px;background:#f4f6ff;border-radius:14px;margin-bottom:14px;border-left:4px solid #021b8c;}
.tsms-choose-icon{width:44px;height:44px;background:#021b8c;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.tsms-choose-title{font-size:15px;font-weight:700;color:#111;margin-bottom:4px;}
.tsms-choose-desc{font-size:13px;color:#666;line-height:1.6;}

/* CTA */
.tsms-cta-section{background:linear-gradient(135deg,#021b8c,#0a2db5);padding:80px 0;}
.tsms-cta-title{font-size:36px;font-weight:800;color:#fff;margin-bottom:16px;}
.tsms-cta-desc{font-size:16px;color:rgba(255,255,255,0.8);margin-bottom:32px;}
.tsms-btn-white{display:inline-block;background:#fff;color:#021b8c;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none;transition:transform 0.2s;}
.tsms-btn-white:hover{transform:translateY(-2px);color:#021b8c;text-decoration:none;}
.tsms-btn-outline-white{display:inline-block;background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.5);padding:13px 32px;border-radius:8px;font-size:15px;font-weight:600;text-decoration:none;margin-left:12px;transition:border-color 0.2s,background 0.2s;}
.tsms-btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.1);color:#fff;text-decoration:none;}
.tsms-cta-contact{color:rgba(255,255,255,0.7);font-size:14px;margin-top:24px;}
.tsms-cta-contact a{color:#fff;font-weight:600;}
/* HERO */
.re-hero{background:linear-gradient(135deg,#021b8c 0%,#0a2db5 60%,#0d35cc 100%);padding:80px 0 60px;overflow:hidden;position:relative;}
.re-hero::before{content:'';position:absolute;top:-80px;right:-80px;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,0.04);pointer-events:none;}
.re-hero::after{content:'';position:absolute;bottom:-60px;left:-60px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,0.03);pointer-events:none;}
.re-hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);color:#fff;padding:7px 18px;border-radius:50px;font-size:13px;font-weight:500;margin-bottom:20px;}
.re-hero h1{font-size:48px;font-weight:800;color:#fff;line-height:1.15;margin-bottom:18px;}
.re-hero h1 span{color:#7eb8ff;}
.re-hero-sub{color:rgba(255,255,255,0.8);font-size:16px;line-height:1.7;margin-bottom:24px;max-width:540px;}
.re-chip-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px;}
.re-chip{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);color:#fff;padding:6px 16px;border-radius:50px;font-size:13px;font-weight:500;}
.re-cta-btn{display:inline-block;background:#fff;color:#021b8c;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none;transition:transform 0.2s,box-shadow 0.2s;}
.re-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2);color:#021b8c;text-decoration:none;}
.re-phone-card{background:#fff;border-radius:20px;padding:28px;box-shadow:0 20px 60px rgba(0,0,0,0.25);position:relative;}
.re-phone-card-head{display:flex;align-items:center;gap:12px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #eef0f8;}
.re-phone-icon{width:42px;height:42px;background:#021b8c;border-radius:10px;display:flex;align-items:center;justify-content:center;}
.re-card-title{font-size:15px;font-weight:700;color:#021b8c;}
.re-card-sub{font-size:12px;color:#888;}
.re-sms-bubble{background:#f4f6ff;border-left:3px solid #021b8c;border-radius:0 10px 10px 0;padding:12px 16px;margin-bottom:10px;font-size:13px;color:#333;}
.re-sms-tag{font-size:10px;font-weight:700;color:#021b8c;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:5px;}
.re-sms-amt{color:#021b8c;font-weight:700;}
.re-stat-row{display:flex;gap:12px;margin-top:16px;}
.re-stat-box{flex:1;background:#f4f6ff;border-radius:10px;padding:12px 8px;text-align:center;}
.re-stat-num{font-size:20px;font-weight:800;color:#021b8c;}
.re-stat-lbl{font-size:10px;color:#888;margin-top:2px;}

/* SECTION COMMONS */
.re-section{padding:80px 0;}
.re-section-alt{padding:80px 0;background:#f8f9ff;}
.re-label{display:inline-block;background:#e8ebff;color:#021b8c;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;padding:5px 14px;border-radius:50px;margin-bottom:14px;}
.re-divider{width:48px;height:4px;background:#021b8c;border-radius:2px;margin-bottom:18px;}
.re-divider-center{margin-left:auto;margin-right:auto;}
.re-section-title{font-size:36px;font-weight:800;color:#111;line-height:1.25;margin-bottom:14px;}
.re-section-title span{color:#021b8c;}
.re-section-desc{font-size:15px;color:#555;line-height:1.8;max-width:620px;}

/* ABOUT */
.re-about-stat-grid{background:#fff;border-radius:16px;padding:32px;box-shadow:0 4px 30px rgba(2,27,140,0.08);}
.re-about-stat{padding:20px;border-radius:12px;background:#f4f6ff;text-align:center;}
.re-about-num{font-size:36px;font-weight:800;color:#021b8c;}
.re-about-lbl{font-size:13px;color:#555;margin-top:4px;font-weight:500;}

/* WHY CARDS */
.re-why-card{background:#fff;border:1px solid #e8ebff;border-radius:14px;padding:28px 20px;text-align:center;height:100%;transition:box-shadow 0.2s,border-color 0.2s;}
.re-why-card:hover{box-shadow:0 8px 30px rgba(2,27,140,0.1);border-color:#021b8c;}
.re-why-icon{width:56px;height:56px;background:#e8ebff;border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;}
.re-why-title{font-size:15px;font-weight:700;color:#111;margin-bottom:8px;}
.re-why-desc{font-size:13px;color:#666;line-height:1.7;}

/* SERVICES */
.re-service-section{padding:80px 0;background:linear-gradient(135deg,#021b8c,#0a2db5);}
.re-service-card{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:30px 24px;height:100%;transition:background 0.2s;}
.re-service-card:hover{background:rgba(255,255,255,0.1);}
.re-service-num{font-size:12px;font-weight:700;color:rgba(255,255,255,0.4);text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;}
.re-service-icon{width:48px;height:48px;background:rgba(255,255,255,0.1);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.re-service-title{font-size:16px;font-weight:700;color:#fff;margin-bottom:10px;}
.re-service-desc{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.7;}

/* FEATURES + USECASES */
.re-feature-item{display:flex;gap:14px;align-items:flex-start;padding:16px 0;border-bottom:1px solid #eef0f8;}
.re-feature-item:last-child{border-bottom:none;}
.re-check-box{width:28px;height:28px;background:#021b8c;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;}
.re-feature-text strong{display:block;font-size:14px;font-weight:700;color:#111;margin-bottom:3px;}
.re-feature-text span{font-size:13px;color:#666;}
.re-usecase-item{display:flex;align-items:center;gap:14px;padding:14px 18px;background:#f4f6ff;border-radius:10px;margin-bottom:10px;border-left:3px solid #021b8c;}
.re-usecase-icon{width:36px;height:36px;background:#021b8c;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.re-usecase-text{font-size:14px;font-weight:600;color:#111;}

/* BENEFITS */
.re-benefit-card{background:#fff;border-radius:16px;padding:30px 24px;height:100%;border:1px solid #eef0f8;transition:box-shadow 0.2s,border-color 0.2s;}
.re-benefit-card:hover{box-shadow:0 8px 30px rgba(2,27,140,0.1);border-color:#021b8c;}
.re-benefit-icon{width:52px;height:52px;background:#e8ebff;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.re-benefit-title{font-size:15px;font-weight:700;color:#111;margin-bottom:10px;}
.re-benefit-desc{font-size:13px;color:#666;line-height:1.7;}

/* HOW IT WORKS */
.re-how-section{padding:80px 0;background:#f8f9ff;}
.re-step-card{background:#fff;border-radius:16px;padding:30px 24px;text-align:center;height:100%;border:1px solid #eef0f8;}
.re-step-num{width:48px;height:48px;background:#021b8c;border-radius:50%;color:#fff;font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.re-step-icon{width:48px;height:48px;background:#e8ebff;border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.re-step-title{font-size:15px;font-weight:700;color:#111;margin-bottom:8px;}
.re-step-desc{font-size:13px;color:#666;line-height:1.7;}

/* WHY CHOOSE US */
.re-choose-card{display:flex;gap:16px;align-items:flex-start;padding:24px;background:#f4f6ff;border-radius:14px;margin-bottom:14px;border-left:4px solid #021b8c;}
.re-choose-icon{width:44px;height:44px;background:#021b8c;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.re-choose-title{font-size:15px;font-weight:700;color:#111;margin-bottom:4px;}
.re-choose-desc{font-size:13px;color:#666;line-height:1.6;}

/* CTA */
.re-cta-section{background:linear-gradient(135deg,#021b8c,#0a2db5);padding:80px 0;}
.re-cta-title{font-size:36px;font-weight:800;color:#fff;margin-bottom:16px;}
.re-cta-desc{font-size:16px;color:rgba(255,255,255,0.8);margin-bottom:32px;}
.re-btn-white{display:inline-block;background:#fff;color:#021b8c;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none;transition:transform 0.2s;}
.re-btn-white:hover{transform:translateY(-2px);color:#021b8c;text-decoration:none;}
.re-btn-outline-white{display:inline-block;background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.5);padding:13px 32px;border-radius:8px;font-size:15px;font-weight:600;text-decoration:none;margin-left:12px;transition:border-color 0.2s,background 0.2s;}
.re-btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.1);color:#fff;text-decoration:none;}
.re-cta-contact{color:rgba(255,255,255,0.7);font-size:14px;margin-top:24px;}
.re-cta-contact a{color:#fff;font-weight:600;}

/* ─── HERO ─── */
    .ts-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a34c8 55%, #0f45e0 100%);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }
    .ts-hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      background: rgba(92,240,255,0.08);
      border-radius: 50%;
    }
    .ts-hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -80px;
      width: 380px; height: 380px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }
    .ts-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(92,240,255,0.15);
      border: 1px solid rgba(92,240,255,0.3);
      color: #5cf0ff;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 22px;
      text-transform: uppercase;
    }
    .ts-hero h1 {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .ts-hero h1 span { color: #5cf0ff; }
    .ts-hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 540px;
    }
    .ts-hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .ts-hero-tag {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
    }
    .ts-btn-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #5cf0ff;
      color: #021b8c;
      padding: 14px 30px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(92,240,255,0.35);
    }
    .ts-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(92,240,255,0.5); color: #021b8c; text-decoration: none; }
    .ts-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.4);
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .ts-btn-outline:hover { border-color: #5cf0ff; background: rgba(92,240,255,0.1); color: #fff; text-decoration: none; }

    /* Hero Phone Card */
    .ts-phone-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 28px;
      position: relative;
    }
    .ts-phone-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .ts-phone-icon-wrap {
      width: 44px; height: 44px;
      background: rgba(92,240,255,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .ts-phone-card-title { color: #fff; font-weight: 700; font-size: 15px; }
    .ts-phone-card-sub { color: rgba(255,255,255,0.55); font-size: 12px; }
    .ts-sms-bubble {
      background: rgba(255,255,255,0.08);
      border-left: 3px solid #5cf0ff;
      border-radius: 0 10px 10px 0;
      padding: 12px 14px;
      margin-bottom: 12px;
    }
    .ts-sms-type { font-size: 10px; font-weight: 700; color: #5cf0ff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .ts-sms-bubble p { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.5; margin: 0; }
    .ts-sms-amt { color: #5cf0ff; font-weight: 700; }
    .ts-stat-row { display: flex; gap: 12px; margin-top: 20px; }
    .ts-stat-item { flex: 1; text-align: center; background: rgba(92,240,255,0.1); border-radius: 10px; padding: 12px 8px; }
    .ts-stat-num { font-size: 20px; font-weight: 800; color: #5cf0ff; }
    .ts-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 2px; }

    /* ─── SECTION COMMONS ─── */
    .ts-section { padding: 80px 0; }
    .ts-section-sm { padding: 60px 0; }
    .ts-section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #021b8c;
      background: rgba(2,27,140,0.07);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .ts-section-label-light {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #5cf0ff;
      background: rgba(92,240,255,0.15);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .ts-divider {
      width: 48px; height: 4px;
      background: linear-gradient(90deg, #021b8c, #5cf0ff);
      border-radius: 2px;
      margin: 12px 0 20px;
    }
    .ts-divider-center { margin: 12px auto 20px; }
    .ts-section-title {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 800;
      color: #111111;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .ts-section-title span { color: #021b8c; }
    .ts-section-title-light { color: #fff; }
    .ts-section-title-light span { color: #5cf0ff; }
    .ts-section-desc { font-size: 15px; color: #555; line-height: 1.75; }
    .ts-section-desc-light { color: rgba(255,255,255,0.75); }

    /* ─── ABOUT ─── */
    .ts-about-bg { background: #f8f9ff; }
    .ts-about-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .ts-about-stat {
      background: #fff;
      border: 1px solid rgba(2,27,140,0.1);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .ts-about-stat:hover { box-shadow: 0 8px 28px rgba(2,27,140,0.12); transform: translateY(-3px); }
    .ts-about-stat-num { font-size: 36px; font-weight: 900; color: #021b8c; line-height: 1; margin-bottom: 6px; }
    .ts-about-stat-lbl { font-size: 13px; color: #666; font-weight: 500; line-height: 1.4; }

    /* ─── WHY SMS ─── */
    .ts-why-card {
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }
    .ts-why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #021b8c, #5cf0ff);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .ts-why-card:hover { box-shadow: 0 12px 36px rgba(2,27,140,0.12); transform: translateY(-4px); border-color: transparent; }
    .ts-why-card:hover::before { transform: scaleX(1); }
    .ts-why-svg { margin: 0 auto 16px; display: block; }
    .ts-why-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; }
    .ts-why-desc { font-size: 13px; color: #666; line-height: 1.6; }

    /* ─── SERVICES ─── */
    .ts-services-bg { background: linear-gradient(135deg, #021b8c 0%, #0a34c8 100%); }
    .ts-service-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 30px 24px;
      height: 100%;
      transition: background 0.25s, transform 0.25s;
      position: relative;
    }
    .ts-service-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
    .ts-service-num {
      font-size: 11px;
      font-weight: 800;
      color: #5cf0ff;
      letter-spacing: 1px;
      margin-bottom: 16px;
      opacity: 0.7;
    }
    .ts-service-svg { margin-bottom: 16px; }
    .ts-service-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .ts-service-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }

    /* ─── FEATURES + USE CASES ─── */
    .ts-features-bg { background: #f8f9ff; }
    .ts-feature-item {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .ts-feature-check {
      width: 28px; height: 28px;
      background: rgba(2,27,140,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .ts-feature-text { font-size: 14px; color: #444; line-height: 1.6; }
    .ts-feature-text strong { color: #111; display: block; margin-bottom: 2px; font-size: 14px; }

    .ts-usecase-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #111;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ts-usecase-item:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.08); }

    /* ─── BENEFITS ─── */
    .ts-benefit-card {
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 16px;
      padding: 30px 24px;
      height: 100%;
      text-align: center;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .ts-benefit-card:hover { box-shadow: 0 12px 36px rgba(2,27,140,0.1); transform: translateY(-4px); }
    .ts-benefit-svg { margin: 0 auto 18px; display: block; }
    .ts-benefit-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 10px; }
    .ts-benefit-desc { font-size: 13px; color: #666; line-height: 1.65; }

    /* ─── HOW IT WORKS ─── */
    .ts-how-bg { background: #021b8c; }
    .ts-step-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 30px 22px;
      height: 100%;
      text-align: center;
      position: relative;
    }
    .ts-step-num {
      width: 48px; height: 48px;
      background: #5cf0ff;
      color: #021b8c;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      font-weight: 900;
      margin: 0 auto 18px;
    }
    .ts-step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .ts-step-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }

    /* ─── WHY CHOOSE US ─── */
    .ts-choose-card {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 22px 24px;
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 14px;
      margin-bottom: 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ts-choose-card:last-child { margin-bottom: 0; }
    .ts-choose-card:hover { border-color: #021b8c; box-shadow: 0 6px 24px rgba(2,27,140,0.08); }
    .ts-choose-icon {
      width: 48px; height: 48px;
      background: rgba(2,27,140,0.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ts-choose-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
    .ts-choose-desc { font-size: 13px; color: #666; line-height: 1.6; }

    /* ─── CTA ─── */
    .ts-cta-bg {
      background: linear-gradient(135deg, #021b8c, #0a34c8);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    .ts-cta-bg::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      background: rgba(92,240,255,0.08);
      border-radius: 50%;
    }
    .ts-cta-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
    .ts-cta-desc { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
/* ─── HERO ─── */
    .consultant-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a34c8 55%, #0f45e0 100%);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }
    .consultant-hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 460px; height: 460px;
      background: rgba(92,240,255,0.07);
      border-radius: 50%;
    }
    .consultant-hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -60px;
      width: 320px; height: 320px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }
    .consultant-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(92,240,255,0.15);
      border: 1px solid rgba(92,240,255,0.3);
      color: #5cf0ff;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 22px;
      text-transform: uppercase;
    }
    .consultant-hero h1 {
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .consultant-hero h1 span { color: #5cf0ff; }
    .consultant-hero-subtitle {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      margin-bottom: 30px;
      max-width: 540px;
    }
    .consultant-hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .consultant-hero-tag {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
    }
    .consultant-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #5cf0ff;
      color: #021b8c;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(92,240,255,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .consultant-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(92,240,255,0.5); color: #021b8c; text-decoration: none; }
    .consultant-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.4);
      padding: 12px 26px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .consultant-btn-outline:hover { border-color: #5cf0ff; background: rgba(92,240,255,0.1); color: #fff; text-decoration: none; }
    .consultant-btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #021b8c;
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(2,27,140,0.3);
      transition: transform 0.2s;
    }
    .consultant-btn-dark:hover { transform: translateY(-2px); color: #fff; text-decoration: none; }

    /* Hero SMS Card */
    .consultant-sms-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 28px;
    }
    .consultant-sms-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .consultant-sms-card-icon {
      width: 44px; height: 44px;
      background: rgba(92,240,255,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .consultant-sms-card-title { color: #fff; font-weight: 700; font-size: 15px; }
    .consultant-sms-card-sub { color: rgba(255,255,255,0.55); font-size: 12px; }
    .consultant-sms-bubble {
      background: rgba(255,255,255,0.08);
      border-left: 3px solid #5cf0ff;
      border-radius: 0 10px 10px 0;
      padding: 12px 14px;
      margin-bottom: 12px;
    }
    .consultant-sms-type { font-size: 10px; font-weight: 700; color: #5cf0ff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .consultant-sms-bubble p { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.5; margin: 0; }
    .consultant-sms-amt { color: #5cf0ff; font-weight: 700; }
    .consultant-stats-row { display: flex; gap: 10px; margin-top: 20px; }
    .consultant-stat-box { flex: 1; text-align: center; background: rgba(92,240,255,0.1); border-radius: 10px; padding: 12px 8px; }
    .consultant-stat-num { font-size: 20px; font-weight: 800; color: #5cf0ff; }
    .consultant-stat-label { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 2px; }

    /* ─── SECTION COMMONS ─── */
    .consultant-section { padding: 80px 0; }
    .consultant-section-sm { padding: 60px 0; }
    .consultant-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #021b8c;
      background: rgba(2,27,140,0.07);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .consultant-label-light {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #5cf0ff;
      background: rgba(92,240,255,0.15);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .consultant-divider {
      width: 48px; height: 4px;
      background: linear-gradient(90deg, #021b8c, #5cf0ff);
      border-radius: 2px;
      margin: 12px 0 20px;
    }
    .consultant-divider-center { margin: 12px auto 20px; }
    .consultant-heading {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 800;
      color: #111111;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .consultant-heading span { color: #021b8c; }
    .consultant-heading-light { color: #fff; }
    .consultant-heading-light span { color: #5cf0ff; }
    .consultant-desc { font-size: 15px; color: #555; line-height: 1.75; }
    .consultant-desc-light { color: rgba(255,255,255,0.75); }

    /* ─── ABOUT ─── */
    .consultant-about-bg { background: #f8f9ff; }
    .consultant-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .consultant-stat-card {
      background: #fff;
      border: 1px solid rgba(2,27,140,0.1);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .consultant-stat-card:hover { box-shadow: 0 8px 28px rgba(2,27,140,0.12); transform: translateY(-3px); }
    .consultant-stat-big { font-size: 36px; font-weight: 900; color: #021b8c; line-height: 1; margin-bottom: 6px; }
    .consultant-stat-desc { font-size: 13px; color: #666; font-weight: 500; line-height: 1.4; }

    /* ─── WHY SMS ─── */
    .consultant-why-card {
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    }
    .consultant-why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #021b8c, #5cf0ff);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .consultant-why-card:hover { box-shadow: 0 12px 36px rgba(2,27,140,0.12); transform: translateY(-4px); border-color: transparent; }
    .consultant-why-card:hover::before { transform: scaleX(1); }
    .consultant-why-icon { margin: 0 auto 16px; display: block; }
    .consultant-why-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; }
    .consultant-why-desc { font-size: 13px; color: #666; line-height: 1.6; }

    /* ─── SERVICES ─── */
    .consultant-services-bg { background: linear-gradient(135deg, #021b8c 0%, #0a34c8 100%); }
    .consultant-service-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 30px 24px;
      height: 100%;
      transition: background 0.25s, transform 0.25s;
    }
    .consultant-service-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
    .consultant-service-num { font-size: 11px; font-weight: 800; color: #5cf0ff; letter-spacing: 1px; margin-bottom: 16px; opacity: 0.7; }
    .consultant-service-icon { margin-bottom: 16px; }
    .consultant-service-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .consultant-service-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }

    /* ─── FEATURES + USE CASES ─── */
    .consultant-features-bg { background: #f8f9ff; }
    .consultant-feature-row {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .consultant-feature-tick {
      width: 28px; height: 28px;
      background: rgba(2,27,140,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .consultant-feature-content { font-size: 14px; color: #444; line-height: 1.6; }
    .consultant-feature-content strong { color: #111; display: block; margin-bottom: 2px; font-size: 14px; }
    .consultant-usecase-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #111;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .consultant-usecase-row:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.08); }

    /* ─── BENEFITS ─── */
    .consultant-benefit-card {
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 16px;
      padding: 30px 24px;
      height: 100%;
      text-align: center;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .consultant-benefit-card:hover { box-shadow: 0 12px 36px rgba(2,27,140,0.1); transform: translateY(-4px); }
    .consultant-benefit-icon { margin: 0 auto 18px; display: block; }
    .consultant-benefit-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 10px; }
    .consultant-benefit-desc { font-size: 13px; color: #666; line-height: 1.65; }

    /* ─── HOW IT WORKS ─── */
    .consultant-how-bg { background: #021b8c; }
    .consultant-step-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 30px 22px;
      height: 100%;
      text-align: center;
    }
    .consultant-step-num {
      width: 48px; height: 48px;
      background: #5cf0ff;
      color: #021b8c;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      font-weight: 900;
      margin: 0 auto 18px;
    }
    .consultant-step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .consultant-step-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }

    /* ─── WHY CHOOSE US ─── */
    .consultant-choose-card {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 22px 24px;
      background: #fff;
      border: 1px solid #eaecf8;
      border-radius: 14px;
      margin-bottom: 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .consultant-choose-card:last-child { margin-bottom: 0; }
    .consultant-choose-card:hover { border-color: #021b8c; box-shadow: 0 6px 24px rgba(2,27,140,0.08); }
    .consultant-choose-icon-box {
      width: 48px; height: 48px;
      background: rgba(2,27,140,0.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .consultant-choose-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
    .consultant-choose-desc { font-size: 13px; color: #666; line-height: 1.6; }

    /* ─── CTA ─── */
    .consultant-cta-bg {
      background: linear-gradient(135deg, #021b8c, #0a34c8);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    .consultant-cta-bg::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 300px; height: 300px;
      background: rgba(92,240,255,0.07);
      border-radius: 50%;
    }
    .consultant-cta-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
    .consultant-cta-desc { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
/* ---- HERO ---- */
.cd-hero{padding:72px 0 60px;background:var(--cd-white)}
.cd-hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--cd-accent);color:var(--cd-primary);font-size:12px;font-weight:600;padding:6px 16px;border-radius:20px;margin-bottom:20px;letter-spacing:.4px}
.cd-hero h1{font-size:38px;font-weight:700;line-height:1.25;color:var(--cd-secondary);margin-bottom:18px}
.cd-hero h1 span{color:var(--cd-primary)}
.cd-hero-subtitle{font-size:15px;color:var(--cd-muted);margin-bottom:28px;max-width:540px}
.cd-hero-checks{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px}
.cd-hero-check{display:flex;align-items:center;gap:7px;background:var(--cd-light);border:1px solid var(--cd-border);border-radius:6px;padding:7px 14px;font-size:13px;font-weight:500;color:var(--cd-primary)}
.cd-hero-btn{display:inline-block;background:var(--cd-primary);color:#fff;padding:14px 30px;border-radius:7px;font-size:14px;font-weight:600;transition:opacity .2s}
.cd-hero-btn:hover{opacity:.88;color:#fff}
.cd-phone-card{background:var(--cd-white);border:1.5px solid var(--cd-border);border-radius:16px;padding:28px 24px;box-shadow:0 8px 40px rgba(2,27,140,.08)}
.cd-phone-card-head{display:flex;align-items:center;gap:14px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--cd-border)}
.cd-phone-icon-wrap{width:46px;height:46px;background:var(--cd-accent);border-radius:10px;display:flex;align-items:center;justify-content:center}
.cd-card-title{font-size:14px;font-weight:600;color:var(--cd-secondary)}
.cd-card-sub{font-size:12px;color:var(--cd-muted)}
.cd-sms-bubble{background:var(--cd-light);border-radius:10px;padding:14px 16px;margin-bottom:12px;font-size:13px;color:var(--cd-secondary)}
.cd-sms-type{font-size:11px;font-weight:600;color:var(--cd-primary);text-transform:uppercase;letter-spacing:.5px;margin-bottom:5px}
.cd-sms-amt{font-weight:700;color:var(--cd-primary)}
.cd-stat-row{display:flex;gap:0;border-top:1px solid var(--cd-border);margin-top:16px;padding-top:16px}
.cd-stat-item{flex:1;text-align:center}
.cd-stat-item+.cd-stat-item{border-left:1px solid var(--cd-border)}
.cd-stat-num{font-size:20px;font-weight:700;color:var(--cd-primary)}
.cd-stat-lbl{font-size:11px;color:var(--cd-muted)}

/* ---- SECTION COMMON ---- */
.cd-section-pad{padding:72px 0}
.cd-section-pad-sm{padding:56px 0}
.cd-section-label{display:inline-block;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:var(--cd-primary);margin-bottom:10px}
.cd-divider{width:48px;height:3px;background:var(--cd-primary);border-radius:2px;margin:12px 0 20px}
.cd-divider-center{margin:12px auto 20px}
.cd-section-title{font-size:30px;font-weight:700;color:var(--cd-secondary);line-height:1.3;margin-bottom:16px}
.cd-section-title span{color:var(--cd-primary)}
.cd-section-desc{font-size:15px;color:var(--cd-muted);max-width:600px}

/* ---- ABOUT ---- */
.cd-about-bg{background:var(--cd-gray)}
.cd-about-stat-box{background:var(--cd-white);border-radius:14px;padding:28px;border:1px solid var(--cd-border)}
.cd-about-stat{text-align:center;padding:20px;border-radius:10px;background:var(--cd-light)}
.cd-about-num{font-size:32px;font-weight:700;color:var(--cd-primary)}
.cd-about-lbl{font-size:12px;color:var(--cd-muted);margin-top:4px}

/* ---- WHY SMS ---- */
.cd-why-card{background:var(--cd-white);border:1px solid var(--cd-border);border-radius:12px;padding:24px 20px;height:100%;text-align:center;transition:box-shadow .2s,border-color .2s}
.cd-why-card:hover{box-shadow:0 6px 28px rgba(2,27,140,.1);border-color:var(--cd-primary)}
.cd-why-icon-wrap{width:52px;height:52px;background:var(--cd-accent);border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.cd-why-title{font-size:15px;font-weight:600;color:var(--cd-secondary);margin-bottom:8px}
.cd-why-desc{font-size:13px;color:var(--cd-muted)}

/* ---- SERVICES ---- */
.cd-services-bg{background:var(--cd-primary)}
.cd-services-bg .cd-section-label{color:rgba(255,255,255,.7)}
.cd-services-bg .cd-section-title{color:#fff}
.cd-services-bg .cd-section-title span{color:#b8c8ff}
.cd-services-bg .cd-section-desc{color:rgba(255,255,255,.75)}
.cd-services-bg .cd-divider{background:rgba(255,255,255,.3)}
.cd-service-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:14px;padding:28px 24px;height:100%;transition:background .2s,border-color .2s}
.cd-service-card:hover{background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.3)}
.cd-service-num{font-size:11px;font-weight:700;color:rgba(255,255,255,.4);letter-spacing:2px;margin-bottom:14px}
.cd-service-icon{width:44px;height:44px;background:rgba(255,255,255,.12);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.cd-service-title{font-size:15px;font-weight:600;color:#fff;margin-bottom:10px}
.cd-service-desc{font-size:13px;color:rgba(255,255,255,.7)}

/* ---- FEATURES + USE CASES ---- */
.cd-features-bg{background:var(--cd-light)}
.cd-feature-item{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px}
.cd-feature-check{width:26px;height:26px;background:var(--cd-primary);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.cd-feature-text{font-size:14px;color:var(--cd-secondary)}
.cd-feature-text strong{display:block;font-weight:600;margin-bottom:3px}
.cd-usecase-item{display:flex;align-items:center;gap:14px;padding:14px 18px;background:var(--cd-white);border:1px solid var(--cd-border);border-radius:10px;margin-bottom:10px;font-size:14px;font-weight:500;color:var(--cd-secondary);transition:border-color .2s}
.cd-usecase-item:hover{border-color:var(--cd-primary);color:var(--cd-primary)}
.cd-usecase-icon{width:36px;height:36px;background:var(--cd-accent);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}

/* ---- BENEFITS ---- */
.cd-benefit-card{background:var(--cd-white);border:1px solid var(--cd-border);border-radius:14px;padding:28px 22px;height:100%;text-align:center;transition:box-shadow .2s}
.cd-benefit-card:hover{box-shadow:0 6px 28px rgba(2,27,140,.1)}
.cd-benefit-icon{width:54px;height:54px;background:var(--cd-accent);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.cd-benefit-title{font-size:15px;font-weight:600;color:var(--cd-secondary);margin-bottom:10px}
.cd-benefit-desc{font-size:13px;color:var(--cd-muted)}

/* ---- HOW IT WORKS ---- */
.cd-how-bg{background:var(--cd-gray)}
.cd-step-card{background:var(--cd-white);border:1px solid var(--cd-border);border-radius:14px;padding:28px 22px;text-align:center;height:100%;position:relative}
.cd-step-num{width:44px;height:44px;background:var(--cd-primary);color:#fff;border-radius:50%;font-size:16px;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.cd-step-icon{width:44px;height:44px;background:var(--cd-accent);border-radius:10px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.cd-step-title{font-size:15px;font-weight:600;color:var(--cd-secondary);margin-bottom:8px}
.cd-step-desc{font-size:13px;color:var(--cd-muted)}

/* ---- WHY CHOOSE US ---- */
.cd-choose-card{display:flex;align-items:flex-start;gap:18px;padding:20px;border:1px solid var(--cd-border);border-radius:12px;margin-bottom:14px;background:var(--cd-white);transition:border-color .2s}
.cd-choose-card:hover{border-color:var(--cd-primary)}
.cd-choose-icon{width:46px;height:46px;background:var(--cd-accent);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cd-choose-title{font-size:15px;font-weight:600;color:var(--cd-secondary);margin-bottom:5px}
.cd-choose-desc{font-size:13px;color:var(--cd-muted)}

/* ---- CTA ---- */
.cd-cta-bg{background:linear-gradient(135deg,var(--cd-primary) 0%,#0a2db5 100%);padding:72px 0}
.cd-cta-title{font-size:30px;font-weight:700;color:#fff;margin-bottom:16px}
.cd-cta-desc{color:rgba(255,255,255,.8);margin-bottom:32px;font-size:15px}
.cd-cta-btn-primary{display:inline-block;background:#fff;color:var(--cd-primary);padding:14px 30px;border-radius:7px;font-size:14px;font-weight:700;transition:opacity .2s;margin:6px}
.cd-cta-btn-primary:hover{opacity:.9;color:var(--cd-primary)}
.cd-cta-btn-outline{display:inline-block;border:2px solid rgba(255,255,255,.6);color:#fff;padding:12px 28px;border-radius:7px;font-size:14px;font-weight:600;transition:border-color .2s;margin:6px}
.cd-cta-btn-outline:hover{border-color:#fff;color:#fff}
.cd-cta-phone{color:rgba(255,255,255,.85);font-size:14px;margin-top:20px}
.cd-cta-phone a{color:#fff;font-weight:600}
/* ========== HERO ========== */
.tt-hero-section{padding:72px 0 60px;background:#ffffff}
.tt-hero-badge{display:inline-flex;align-items:center;gap:8px;background:#e8ecff;color:#021b8c;font-size:12px;font-weight:600;padding:6px 16px;border-radius:20px;margin-bottom:20px;letter-spacing:.4px}
.tt-hero-heading{font-size:38px;font-weight:700;line-height:1.25;color:#111111;margin-bottom:18px}
.tt-hero-heading span{color:#021b8c}
.tt-hero-subtitle{font-size:15px;color:#555555;margin-bottom:28px;max-width:540px}
.tt-hero-checks{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px}
.tt-hero-check{display:flex;align-items:center;gap:7px;background:#f4f6ff;border:1px solid #dde3ff;border-radius:6px;padding:7px 14px;font-size:13px;font-weight:500;color:#021b8c}
.tt-hero-cta{display:inline-block;background:#021b8c;color:#ffffff;padding:14px 30px;border-radius:7px;font-size:14px;font-weight:600;transition:opacity .2s}
.tt-hero-cta:hover{opacity:.88;color:#ffffff}
.tt-sms-card{background:#ffffff;border:1.5px solid #dde3ff;border-radius:16px;padding:28px 24px;box-shadow:0 8px 40px rgba(2,27,140,.08)}
.tt-sms-card-head{display:flex;align-items:center;gap:14px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #dde3ff}
.tt-sms-phone-icon{width:46px;height:46px;background:#e8ecff;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.tt-sms-card-title{font-size:14px;font-weight:600;color:#111111}
.tt-sms-card-sub{font-size:12px;color:#555555}
.tt-sms-bubble{background:#f4f6ff;border-radius:10px;padding:14px 16px;margin-bottom:12px;font-size:13px;color:#111111}
.tt-sms-tag{font-size:11px;font-weight:600;color:#021b8c;text-transform:uppercase;letter-spacing:.5px;margin-bottom:5px}
.tt-sms-highlight{font-weight:700;color:#021b8c}
.tt-stats-row{display:flex;gap:0;border-top:1px solid #dde3ff;margin-top:16px;padding-top:16px}
.tt-stat-block{flex:1;text-align:center}
.tt-stat-block+.tt-stat-block{border-left:1px solid #dde3ff}
.tt-stat-number{font-size:20px;font-weight:700;color:#021b8c}
.tt-stat-label{font-size:11px;color:#555555}

/* ========== SECTION SHARED ========== */
.tt-section-pad{padding:72px 0}
.tt-section-pad-sm{padding:56px 0}
.tt-section-tag{display:inline-block;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:#021b8c;margin-bottom:10px}
.tt-divider{width:48px;height:3px;background:#021b8c;border-radius:2px;margin:12px 0 20px}
.tt-divider-center{margin:12px auto 20px}
.tt-section-heading{font-size:30px;font-weight:700;color:#111111;line-height:1.3;margin-bottom:16px}
.tt-section-heading span{color:#021b8c}
.tt-section-text{font-size:15px;color:#555555;max-width:600px}

/* ========== ABOUT ========== */
.tt-about-section{background:#f7f8fc}
.tt-about-stat-wrap{background:#ffffff;border-radius:14px;padding:28px;border:1px solid #dde3ff}
.tt-about-stat-card{text-align:center;padding:20px;border-radius:10px;background:#f4f6ff}
.tt-about-stat-number{font-size:32px;font-weight:700;color:#021b8c}
.tt-about-stat-text{font-size:12px;color:#555555;margin-top:4px}

/* ========== WHY SMS ========== */
.tt-why-card{background:#ffffff;border:1px solid #dde3ff;border-radius:12px;padding:24px 20px;height:100%;text-align:center;transition:box-shadow .2s,border-color .2s}
.tt-why-card:hover{box-shadow:0 6px 28px rgba(2,27,140,.1);border-color:#021b8c}
.tt-why-icon-box{width:52px;height:52px;background:#e8ecff;border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.tt-why-card-title{font-size:15px;font-weight:600;color:#111111;margin-bottom:8px}
.tt-why-card-text{font-size:13px;color:#555555}

/* ========== SERVICES ========== */
.tt-services-section{background:#021b8c}
.tt-services-section .tt-section-tag{color:rgba(255,255,255,.7)}
.tt-services-section .tt-section-heading{color:#ffffff}
.tt-services-section .tt-section-heading span{color:#b8c8ff}
.tt-services-section .tt-section-text{color:rgba(255,255,255,.75)}
.tt-services-section .tt-divider{background:rgba(255,255,255,.3)}
.tt-service-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:14px;padding:28px 24px;height:100%;transition:background .2s,border-color .2s}
.tt-service-card:hover{background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.3)}
.tt-service-count{font-size:11px;font-weight:700;color:rgba(255,255,255,.4);letter-spacing:2px;margin-bottom:14px}
.tt-service-icon-box{width:44px;height:44px;background:rgba(255,255,255,.12);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.tt-service-card-title{font-size:15px;font-weight:600;color:#ffffff;margin-bottom:10px}
.tt-service-card-text{font-size:13px;color:rgba(255,255,255,.7)}

/* ========== FEATURES + USE CASES ========== */
.tt-features-section{background:#f4f6ff}
.tt-feature-row{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px}
.tt-feature-tick{width:26px;height:26px;background:#021b8c;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.tt-feature-content{font-size:14px;color:#111111}
.tt-feature-content strong{display:block;font-weight:600;margin-bottom:3px}
.tt-usecase-row{display:flex;align-items:center;gap:14px;padding:14px 18px;background:#ffffff;border:1px solid #dde3ff;border-radius:10px;margin-bottom:10px;font-size:14px;font-weight:500;color:#111111;transition:border-color .2s}
.tt-usecase-row:hover{border-color:#021b8c;color:#021b8c}
.tt-usecase-icon-box{width:36px;height:36px;background:#e8ecff;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}

/* ========== BENEFITS ========== */
.tt-benefit-card{background:#ffffff;border:1px solid #dde3ff;border-radius:14px;padding:28px 22px;height:100%;text-align:center;transition:box-shadow .2s}
.tt-benefit-card:hover{box-shadow:0 6px 28px rgba(2,27,140,.1)}
.tt-benefit-icon-box{width:54px;height:54px;background:#e8ecff;border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.tt-benefit-card-title{font-size:15px;font-weight:600;color:#111111;margin-bottom:10px}
.tt-benefit-card-text{font-size:13px;color:#555555}

/* ========== HOW IT WORKS ========== */
.tt-howitworks-section{background:#f7f8fc}
.tt-step-card{background:#ffffff;border:1px solid #dde3ff;border-radius:14px;padding:28px 22px;text-align:center;height:100%}
.tt-step-number{width:44px;height:44px;background:#021b8c;color:#ffffff;border-radius:50%;font-size:16px;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.tt-step-icon-box{width:44px;height:44px;background:#e8ecff;border-radius:10px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.tt-step-card-title{font-size:15px;font-weight:600;color:#111111;margin-bottom:8px}
.tt-step-card-text{font-size:13px;color:#555555}

/* ========== WHY CHOOSE US ========== */
.tt-choose-card{display:flex;align-items:flex-start;gap:18px;padding:20px;border:1px solid #dde3ff;border-radius:12px;margin-bottom:14px;background:#ffffff;transition:border-color .2s}
.tt-choose-card:hover{border-color:#021b8c}
.tt-choose-icon-box{width:46px;height:46px;background:#e8ecff;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.tt-choose-card-title{font-size:15px;font-weight:600;color:#111111;margin-bottom:5px}
.tt-choose-card-text{font-size:13px;color:#555555}

/* ========== CTA ========== */
.tt-cta-section{background:linear-gradient(135deg,#021b8c 0%,#0a2db5 100%);padding:72px 0}
.tt-cta-heading{font-size:30px;font-weight:700;color:#ffffff;margin-bottom:16px}
.tt-cta-text{color:rgba(255,255,255,.8);margin-bottom:32px;font-size:15px}
.tt-cta-btn-white{display:inline-block;background:#ffffff;color:#021b8c;padding:14px 30px;border-radius:7px;font-size:14px;font-weight:700;transition:opacity .2s;margin:6px}
.tt-cta-btn-white:hover{opacity:.9;color:#021b8c}
.tt-cta-btn-border{display:inline-block;border:2px solid rgba(255,255,255,.6);color:#ffffff;padding:12px 28px;border-radius:7px;font-size:14px;font-weight:600;transition:border-color .2s;margin:6px}
.tt-cta-btn-border:hover{border-color:#ffffff;color:#ffffff}
.tt-cta-contact{color:rgba(255,255,255,.85);font-size:14px;margin-top:20px}
.tt-cta-contact a{color:#ffffff;font-weight:600}

/* =========================================
   HERO
========================================= */
.cl-banner-section { background: linear-gradient(135deg, #021b8c 0%, #0a2fa8 55%, #1040c8 100%); min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 90px 0 70px; }
.cl-banner-blob-one { position: absolute; right: -100px; top: -100px; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.cl-banner-blob-two { position: absolute; left: -130px; bottom: -130px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.03); pointer-events: none; }
.cl-banner-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: #ffffff; font-size: 0.76rem; font-weight: 600; padding: 7px 16px; border-radius: 50px; margin-bottom: 22px; letter-spacing: 0.4px; }
.cl-banner-heading { font-size: 3rem; font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 18px; }
.cl-banner-heading span { color: #7ecbff; }
.cl-banner-tagline { font-size: 0.97rem; color: rgba(255,255,255,0.82); line-height: 1.85; margin-bottom: 28px; }
.cl-banner-chips-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.cl-banner-chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #ffffff; font-size: 0.76rem; font-weight: 500; padding: 6px 14px; border-radius: 4px; }
.cl-banner-action-btn { display: inline-block; background: #ffffff; color: #021b8c; font-size: 0.9rem; font-weight: 700; padding: 14px 30px; border-radius: 8px; transition: background 0.22s; }
.cl-banner-action-btn:hover { background: #e8eeff; color: #021b8c; }

/* Hero Live Card */
.cl-banner-panel-card { background: #ffffff; border-radius: 18px; padding: 26px; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.cl-banner-panel-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.cl-banner-panel-icon { width: 44px; height: 44px; min-width: 44px; background: #021b8c; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.cl-banner-panel-title { font-size: 0.92rem; font-weight: 700; color: #111111; margin: 0; }
.cl-banner-panel-sub { font-size: 0.73rem; color: #999999; margin: 0; }
.cl-banner-msg-row { background: #f9faff; border-left: 3px solid #021b8c; border-radius: 0 8px 8px 0; padding: 11px 13px; margin-bottom: 10px; }
.cl-banner-msg-row:last-of-type { margin-bottom: 0; }
.cl-banner-msg-tag { font-size: 0.66rem; font-weight: 700; color: #021b8c; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.cl-banner-msg-body { font-size: 0.79rem; color: #333333; line-height: 1.55; }
.cl-banner-msg-body strong { color: #021b8c; }
.cl-banner-metrics-row { display: flex; border-top: 1px solid #f0f0f0; padding-top: 15px; margin-top: 14px; }
.cl-banner-metric-col { flex: 1; text-align: center; border-right: 1px solid #f0f0f0; padding: 4px 0; }
.cl-banner-metric-col:last-child { border-right: none; }
.cl-banner-metric-num { font-size: 1.25rem; font-weight: 800; color: #021b8c; line-height: 1.2; }
.cl-banner-metric-lbl { font-size: 0.62rem; color: #999999; margin-top: 2px; }

/* =========================================
   ABOUT
========================================= */
.cl-intro-section { background: #ffffff; padding:80px; 0px;}
.cl-intro-figures-grid { background: #f9faff; border-radius: 14px; padding: 24px; }
.cl-intro-figure-box { background: #ffffff; border-radius: 10px; padding: 22px 16px; text-align: center; box-shadow: 0 2px 14px rgba(2,27,140,0.07); border-bottom: 3px solid #021b8c; height: 100%; }
.cl-intro-figure-num { font-size: 1.9rem; font-weight: 800; color: #021b8c; line-height: 1.2; }
.cl-intro-figure-lbl { font-size: 0.76rem; color: #666666; margin-top: 5px; line-height: 1.4; }

/* =========================================
   WHY SMS
========================================= */
.cl-reason-section { background: #f9faff; padding:80px; 0px;}
.cl-reason-card { background: #ffffff; border-radius: 12px; padding: 26px 20px; text-align: center; border: 1px solid #e8ecff; transition: all 0.25s; height: 100%; display: flex; flex-direction: column; align-items: center; }
.cl-reason-card:hover { border-color: #021b8c; box-shadow: 0 8px 30px rgba(2,27,140,0.1); transform: translateY(-4px); }
.cl-reason-icon-wrap { width: 56px; height: 56px; min-height: 56px; background: #f0f4ff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cl-reason-card-name { font-size: 0.93rem; font-weight: 700; color: #111111; margin-bottom: 8px; }
.cl-reason-card-info { font-size: 0.8rem; color: #666666; line-height: 1.65; margin: 0; }

/* =========================================
   SERVICES
========================================= */
.cl-offering-section { background: #021b8c; padding:80px; 0px;}
.cl-offering-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 26px 22px; height: 100%; position: relative; overflow: hidden; transition: all 0.25s; }
.cl-offering-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); transform: translateY(-4px); }
.cl-offering-card-num { position: absolute; top: 14px; right: 18px; font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; user-select: none; }
.cl-offering-icon-wrap { width: 50px; height: 50px; min-width: 50px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cl-offering-card-name { font-size: 0.96rem; font-weight: 700; color: #ffffff; margin-bottom: 9px; }
.cl-offering-card-info { font-size: 0.81rem; color: rgba(255,255,255,0.74); line-height: 1.72; margin: 0; }

/* =========================================
   FEATURES & USE CASES
========================================= */
.cl-platform-section { background: #ffffff;padding:80px; 0px; }
.cl-platform-feat-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 17px; }
.cl-platform-tick-icon { width: 26px; height: 26px; min-width: 26px; background: #021b8c; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.cl-platform-feat-text { font-size: 0.87rem; color: #444444; line-height: 1.72; }
.cl-platform-feat-text strong { color: #111111; display: block; font-size: 0.89rem; margin-bottom: 2px; }
.cl-platform-case-row { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: 10px; background: #f9faff; border-left: 3px solid #021b8c; margin-bottom: 11px; font-size: 0.87rem; font-weight: 600; color: #111111; }
.cl-platform-case-icon { width: 38px; height: 38px; min-width: 38px; background: #021b8c; border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* =========================================
   BENEFITS
========================================= */
.cl-impact-section { background: #f9faff; padding:80px; 0px;}
.cl-impact-card { background: #ffffff; border-radius: 14px; padding: 28px 22px; text-align: center; box-shadow: 0 4px 20px rgba(2,27,140,0.06); height: 100%; border-top: 4px solid #021b8c; display: flex; flex-direction: column; align-items: center; }
.cl-impact-icon-wrap { width: 62px; height: 62px; background: #f0f4ff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cl-impact-card-name { font-size: 0.97rem; font-weight: 700; color: #111111; margin-bottom: 10px; }
.cl-impact-card-info { font-size: 0.82rem; color: #666666; line-height: 1.72; margin: 0; }

/* =========================================
   HOW IT WORKS
========================================= */
.cl-process-section { background: #021b8c;padding:80px; 0px;}
.cl-process-step-box { text-align: center; padding: 20px 16px; position: relative; }
.cl-process-step-num { width: 62px; height: 62px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.4rem; font-weight: 800; color: #ffffff; }
.cl-process-step-name { font-size: 0.95rem; font-weight: 700; color: #ffffff; margin-bottom: 9px; }
.cl-process-step-info { font-size: 0.81rem; color: rgba(255,255,255,0.72); line-height: 1.72; margin: 0; }
.cl-process-step-arrow { position: absolute; right: -20px; top: 30px; }

/* =========================================
   WHY CHOOSE US
========================================= */
.cl-advantage-section { background: #ffffff;padding:80px; 0px; }
.cl-advantage-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: 12px; border: 1px solid #e8ecff; margin-bottom: 14px; transition: all 0.22s; }
.cl-advantage-card:last-child { margin-bottom: 0; }
.cl-advantage-card:hover { border-color: #021b8c; box-shadow: 0 4px 18px rgba(2,27,140,0.08); }
.cl-advantage-icon-wrap { width: 48px; height: 48px; min-width: 48px; background: #f0f4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.cl-advantage-card-name { font-size: 0.93rem; font-weight: 700; color: #111111; margin-bottom: 4px; }
.cl-advantage-card-info { font-size: 0.81rem; color: #666666; line-height: 1.65; margin: 0; }

/* =========================================
   CTA
========================================= */
.cl-action-section { background: linear-gradient(135deg, #021b8c, #0a2fa8); padding: 80px 0; text-align: center; }
.cl-action-title { font-size: 2.1rem; font-weight: 800; color: #ffffff; margin-bottom: 14px; line-height: 1.25; }
.cl-action-subtitle { font-size: 0.97rem; color: rgba(255,255,255,0.8); margin-bottom: 34px; line-height: 1.75; }
.cl-action-main-btn { display: inline-block; background: #ffffff; color: #021b8c; font-weight: 700; font-size: 0.9rem; padding: 14px 28px; border-radius: 8px; margin: 6px; transition: background 0.2s; }
.cl-action-main-btn:hover { background: #e8eeff; color: #021b8c; }
.cl-action-ghost-btn { display: inline-block; background: transparent; color: #ffffff; font-weight: 700; font-size: 0.9rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.45); margin: 6px; transition: border-color 0.2s; }
.cl-action-ghost-btn:hover { border-color: #ffffff; color: #ffffff; }
.cl-action-footnote { color: rgba(255,255,255,0.65); font-size: 0.84rem; margin-top: 22px; }
.cl-action-footnote a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ===== HERO ===== */
    .ecommerce-portal-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a2dcc 60%, #1a3de8 100%);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }
    .ecommerce-portal-hero-bg-shape {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 520px;
      height: 520px;
      opacity: 0.07;
      pointer-events: none;
    }
    .ecommerce-portal-hero-bg-circle {
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .ecommerce-portal-hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #ffffff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      border: 1px solid rgba(255,255,255,0.25);
    }
    .ecommerce-portal-hero h1 {
      font-size: 46px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 22px;
      letter-spacing: -1px;
    }
    .ecommerce-portal-hero h1 span {
      color: #7dd3fc;
    }
    .ecommerce-portal-hero-subtitle {
      font-size: 16px;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      margin-bottom: 32px;
      font-weight: 300;
    }
    .ecommerce-portal-hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .ecommerce-portal-hero-tag {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      color: #ffffff;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 30px;
    }
    .ecommerce-portal-hero-btn {
      display: inline-block;
      background: #ffffff;
      color: #021b8c;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .ecommerce-portal-hero-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      color: #021b8c;
      text-decoration: none;
    }

    /* SMS Feed Card */
    .ecommerce-portal-feed-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      position: relative;
    }
    .ecommerce-portal-feed-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid #eef0f8;
    }
    .ecommerce-portal-feed-icon {
      width: 46px;
      height: 46px;
      background: #021b8c;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ecommerce-portal-feed-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
    }
    .ecommerce-portal-feed-sub {
      font-size: 12px;
      color: #888;
    }
    .ecommerce-portal-sms-bubble {
      background: #f5f6ff;
      border-left: 3px solid #021b8c;
      border-radius: 0 10px 10px 0;
      padding: 12px 14px;
      margin-bottom: 12px;
    }
    .ecommerce-portal-sms-bubble:last-of-type { margin-bottom: 0; }
    .ecommerce-portal-sms-type {
      font-size: 10px;
      font-weight: 700;
      color: #021b8c;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }
    .ecommerce-portal-sms-body {
      font-size: 13px;
      color: #444;
      line-height: 1.5;
    }
    .ecommerce-portal-sms-highlight { color: #021b8c; font-weight: 700; }
    .ecommerce-portal-feed-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid #eef0f8;
    }
    .ecommerce-portal-stat-item {
      text-align: center;
    }
    .ecommerce-portal-stat-num {
      font-size: 20px;
      font-weight: 800;
      color: #021b8c;
    }
    .ecommerce-portal-stat-lbl {
      font-size: 11px;
      color: #888;
      font-weight: 500;
    }

    /* ===== ABOUT SECTION ===== */
    .ecommerce-portal-about {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .ecommerce-portal-section-label {
      font-size: 11px;
      font-weight: 700;
      color: #021b8c;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }
    .ecommerce-portal-section-title {
      font-size: 34px;
      font-weight: 800;
      color: #111111;
      line-height: 1.25;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
    .ecommerce-portal-section-title span { color: #021b8c; }
    .ecommerce-portal-divider {
      width: 48px;
      height: 4px;
      background: #021b8c;
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .ecommerce-portal-section-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .ecommerce-portal-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .ecommerce-portal-stat-box {
      background: #ffffff;
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(2,27,140,0.07);
      border: 1px solid #eef0f8;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .ecommerce-portal-stat-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(2,27,140,0.12);
    }
    .ecommerce-portal-stat-box-num {
      font-size: 36px;
      font-weight: 800;
      color: #021b8c;
      line-height: 1;
      margin-bottom: 8px;
    }
    .ecommerce-portal-stat-box-lbl {
      font-size: 13px;
      color: #666;
      font-weight: 500;
      line-height: 1.4;
    }

    /* ===== WHY SMS ===== */
    .ecommerce-portal-why {
      padding: 90px 0;
      background: #ffffff;
    }
    .ecommerce-portal-why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 50px;
    }
    .ecommerce-portal-why-card {
      background: #f8f9ff;
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      border: 1px solid #eef0f8;
      transition: all 0.25s;
    }
    .ecommerce-portal-why-card:hover {
      background: #021b8c;
      border-color: #021b8c;
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(2,27,140,0.2);
    }
    .ecommerce-portal-why-card:hover .ecommerce-portal-why-title { color: #ffffff; }
    .ecommerce-portal-why-card:hover .ecommerce-portal-why-desc { color: rgba(255,255,255,0.8); }
    .ecommerce-portal-why-card:hover .ecommerce-portal-why-svg-wrap { background: rgba(255,255,255,0.15); }
    .ecommerce-portal-why-card:hover svg path,
    .ecommerce-portal-why-card:hover svg rect,
    .ecommerce-portal-why-card:hover svg circle,
    .ecommerce-portal-why-card:hover svg polyline { stroke: #ffffff; }
    .ecommerce-portal-why-svg-wrap {
      width: 60px;
      height: 60px;
      background: rgba(2,27,140,0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      transition: background 0.25s;
    }
    .ecommerce-portal-why-title {
      font-size: 14px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 8px;
      transition: color 0.25s;
    }
    .ecommerce-portal-why-desc {
      font-size: 12px;
      color: #777;
      line-height: 1.6;
      transition: color 0.25s;
    }

    /* ===== SERVICES ===== */
    .ecommerce-portal-services {
      padding: 90px 0;
      background: #021b8c;
      position: relative;
      overflow: hidden;
    }
    .ecommerce-portal-services-bg-pattern {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      opacity: 0.04;
      pointer-events: none;
    }
    .ecommerce-portal-services .ecommerce-portal-section-label { color: rgba(255,255,255,0.7); }
    .ecommerce-portal-services .ecommerce-portal-section-title { color: #ffffff; }
    .ecommerce-portal-services .ecommerce-portal-divider { background: rgba(255,255,255,0.4); }
    .ecommerce-portal-services .ecommerce-portal-section-desc { color: rgba(255,255,255,0.75); }
    .ecommerce-portal-service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      transition: background 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }
    .ecommerce-portal-service-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-5px);
    }
    .ecommerce-portal-service-num {
      font-size: 42px;
      font-weight: 800;
      color: rgba(255,255,255,0.08);
      position: absolute;
      top: 18px;
      right: 22px;
      line-height: 1;
    }
    .ecommerce-portal-service-svg-wrap {
      width: 54px;
      height: 54px;
      background: rgba(255,255,255,0.12);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .ecommerce-portal-service-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .ecommerce-portal-service-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
    }

    /* ===== FEATURES + USE CASES ===== */
    .ecommerce-portal-features {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .ecommerce-portal-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .ecommerce-portal-feature-check {
      width: 26px;
      height: 26px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .ecommerce-portal-feature-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 3px;
    }
    .ecommerce-portal-feature-text span {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
    }
    .ecommerce-portal-usecase-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #ffffff;
      border: 1px solid #eef0f8;
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 12px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ecommerce-portal-usecase-item:hover {
      border-color: #021b8c;
      box-shadow: 0 4px 16px rgba(2,27,140,0.1);
    }
    .ecommerce-portal-usecase-icon {
      width: 38px;
      height: 38px;
      background: #f5f6ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ecommerce-portal-usecase-text {
      font-size: 14px;
      font-weight: 500;
      color: #111111;
    }

    /* ===== BENEFITS ===== */
    .ecommerce-portal-benefits {
      padding: 90px 0;
      background: #ffffff;
    }
    .ecommerce-portal-benefit-card {
      background: #f8f9ff;
      border-radius: 18px;
      padding: 36px 28px;
      height: 100%;
      border: 1px solid #eef0f8;
      text-align: center;
      transition: all 0.25s;
    }
    .ecommerce-portal-benefit-card:hover {
      border-color: #021b8c;
      box-shadow: 0 10px 40px rgba(2,27,140,0.12);
      transform: translateY(-4px);
    }
    .ecommerce-portal-benefit-svg-wrap {
      width: 64px;
      height: 64px;
      background: rgba(2,27,140,0.07);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .ecommerce-portal-benefit-title {
      font-size: 16px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 12px;
    }
    .ecommerce-portal-benefit-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.7;
    }

    /* ===== HOW IT WORKS ===== */
    .ecommerce-portal-how {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .ecommerce-portal-steps-wrap {
      position: relative;
      margin-top: 50px;
    }
    .ecommerce-portal-step-line {
      position: absolute;
      top: 36px;
      left: calc(12.5% + 18px);
      right: calc(12.5% + 18px);
      height: 2px;
      background: linear-gradient(90deg, #021b8c, #7dd3fc);
      z-index: 0;
    }
    .ecommerce-portal-step-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .ecommerce-portal-step-num-wrap {
      width: 72px;
      height: 72px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 4px solid #f8f9ff;
      box-shadow: 0 6px 20px rgba(2,27,140,0.25);
    }
    .ecommerce-portal-step-num {
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
    }
    .ecommerce-portal-step-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 10px;
    }
    .ecommerce-portal-step-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
    }

    /* ===== WHY CHOOSE US ===== */
    .ecommerce-portal-choose {
      padding: 90px 0;
      background: #ffffff;
    }
    .ecommerce-portal-choose-card {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: #f8f9ff;
      border-radius: 14px;
      padding: 24px 22px;
      margin-bottom: 16px;
      border: 1px solid #eef0f8;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ecommerce-portal-choose-card:last-child { margin-bottom: 0; }
    .ecommerce-portal-choose-card:hover {
      border-color: #021b8c;
      box-shadow: 0 6px 24px rgba(2,27,140,0.1);
    }
    .ecommerce-portal-choose-svg-wrap {
      width: 50px;
      height: 50px;
      background: #021b8c;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ecommerce-portal-choose-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 6px;
    }
    .ecommerce-portal-choose-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
    }
    .ecommerce-portal-choose-left {
      padding-right: 30px;
    }

    /* ===== CTA ===== */
    .ecommerce-portal-cta {
      background: linear-gradient(135deg, #021b8c 0%, #0a2dcc 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ecommerce-portal-cta-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.06;
    }
    .ecommerce-portal-cta-title {
      font-size: 36px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .ecommerce-portal-cta-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 36px;
      font-weight: 300;
    }
    .ecommerce-portal-cta-btn-primary {
      display: inline-block;
      background: #ffffff;
      color: #021b8c;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      margin: 6px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .ecommerce-portal-cta-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      color: #021b8c;
      text-decoration: none;
    }
    .ecommerce-portal-cta-btn-outline {
      display: inline-block;
      background: transparent;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 32px;
      border-radius: 8px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      margin: 6px;
      transition: border-color 0.2s, background 0.2s;
    }
    .ecommerce-portal-cta-btn-outline:hover {
      border-color: #ffffff;
      background: rgba(255,255,255,0.1);
      color: #ffffff;
      text-decoration: none;
    }
    .ecommerce-portal-cta-contact {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin-top: 28px;
    }
    .ecommerce-portal-cta-contact a { color: #ffffff; font-weight: 600; }

/* ===== HERO ===== */
    .airlines-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a2dcc 60%, #1a3de8 100%);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }
    .airlines-hero-bg-shape {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 520px;
      height: 520px;
      opacity: 0.07;
      pointer-events: none;
    }
    .airlines-hero-bg-circle {
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .airlines-hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #ffffff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      border: 1px solid rgba(255,255,255,0.25);
    }
    .airlines-hero h1 {
      font-size: 46px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 22px;
      letter-spacing: -1px;
    }
    .airlines-hero h1 span { color: #7dd3fc; }
    .airlines-hero-subtitle {
      font-size: 16px;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      margin-bottom: 32px;
      font-weight: 300;
    }
    .airlines-hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .airlines-hero-tag {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      color: #ffffff;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 30px;
    }
    .airlines-hero-btn {
      display: inline-block;
      background: #ffffff;
      color: #021b8c;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .airlines-hero-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      color: #021b8c;
      text-decoration: none;
    }

    /* SMS Feed Card */
    .airlines-feed-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .airlines-feed-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid #eef0f8;
    }
    .airlines-feed-icon {
      width: 46px;
      height: 46px;
      background: #021b8c;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .airlines-feed-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
    }
    .airlines-feed-sub {
      font-size: 12px;
      color: #888;
    }
    .airlines-sms-bubble {
      background: #f5f6ff;
      border-left: 3px solid #021b8c;
      border-radius: 0 10px 10px 0;
      padding: 12px 14px;
      margin-bottom: 12px;
    }
    .airlines-sms-type {
      font-size: 10px;
      font-weight: 700;
      color: #021b8c;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }
    .airlines-sms-body {
      font-size: 13px;
      color: #444;
      line-height: 1.5;
    }
    .airlines-sms-highlight { color: #021b8c; font-weight: 700; }
    .airlines-feed-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid #eef0f8;
    }
    .airlines-stat-item { text-align: center; }
    .airlines-stat-num {
      font-size: 20px;
      font-weight: 800;
      color: #021b8c;
    }
    .airlines-stat-lbl {
      font-size: 11px;
      color: #888;
      font-weight: 500;
    }

    /* ===== ABOUT ===== */
    .airlines-about {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .airlines-section-label {
      font-size: 11px;
      font-weight: 700;
      color: #021b8c;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }
    .airlines-section-title {
      font-size: 34px;
      font-weight: 800;
      color: #111111;
      line-height: 1.25;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
    .airlines-section-title span { color: #021b8c; }
    .airlines-divider {
      width: 48px;
      height: 4px;
      background: #021b8c;
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .airlines-section-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .airlines-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .airlines-stat-box {
      background: #ffffff;
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(2,27,140,0.07);
      border: 1px solid #eef0f8;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .airlines-stat-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(2,27,140,0.12);
    }
    .airlines-stat-box-num {
      font-size: 36px;
      font-weight: 800;
      color: #021b8c;
      line-height: 1;
      margin-bottom: 8px;
    }
    .airlines-stat-box-lbl {
      font-size: 13px;
      color: #666;
      font-weight: 500;
      line-height: 1.4;
    }

    /* ===== WHY SMS ===== */
    .airlines-why {
      padding: 90px 0;
      background: #ffffff;
    }
    .airlines-why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 50px;
    }
    .airlines-why-card {
      background: #f8f9ff;
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      border: 1px solid #eef0f8;
      transition: all 0.25s;
    }
    .airlines-why-card:hover {
      background: #021b8c;
      border-color: #021b8c;
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(2,27,140,0.2);
    }
    .airlines-why-card:hover .airlines-why-title { color: #ffffff; }
    .airlines-why-card:hover .airlines-why-desc { color: rgba(255,255,255,0.8); }
    .airlines-why-card:hover .airlines-why-svg-wrap { background: rgba(255,255,255,0.15); }
    .airlines-why-card:hover svg path,
    .airlines-why-card:hover svg rect,
    .airlines-why-card:hover svg circle,
    .airlines-why-card:hover svg polyline,
    .airlines-why-card:hover svg line { stroke: #ffffff; }
    .airlines-why-svg-wrap {
      width: 60px;
      height: 60px;
      background: rgba(2,27,140,0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      transition: background 0.25s;
    }
    .airlines-why-title {
      font-size: 14px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 8px;
      transition: color 0.25s;
    }
    .airlines-why-desc {
      font-size: 12px;
      color: #777;
      line-height: 1.6;
      transition: color 0.25s;
    }

    /* ===== SERVICES ===== */
    .airlines-services {
      padding: 90px 0;
      background: #021b8c;
      position: relative;
      overflow: hidden;
    }
    .airlines-services-bg-pattern {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      opacity: 0.04;
      pointer-events: none;
    }
    .airlines-services .airlines-section-label { color: rgba(255,255,255,0.7); }
    .airlines-services .airlines-section-title { color: #ffffff; }
    .airlines-services .airlines-divider { background: rgba(255,255,255,0.4); }
    .airlines-services .airlines-section-desc { color: rgba(255,255,255,0.75); }
    .airlines-service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      transition: background 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }
    .airlines-service-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-5px);
    }
    .airlines-service-num {
      font-size: 42px;
      font-weight: 800;
      color: rgba(255,255,255,0.08);
      position: absolute;
      top: 18px;
      right: 22px;
      line-height: 1;
    }
    .airlines-service-svg-wrap {
      width: 54px;
      height: 54px;
      background: rgba(255,255,255,0.12);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .airlines-service-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .airlines-service-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
    }

    /* ===== FEATURES + USE CASES ===== */
    .airlines-features {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .airlines-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .airlines-feature-check {
      width: 26px;
      height: 26px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .airlines-feature-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 3px;
    }
    .airlines-feature-text span {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
    }
    .airlines-usecase-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #ffffff;
      border: 1px solid #eef0f8;
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 12px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .airlines-usecase-item:hover {
      border-color: #021b8c;
      box-shadow: 0 4px 16px rgba(2,27,140,0.1);
    }
    .airlines-usecase-icon {
      width: 38px;
      height: 38px;
      background: #f5f6ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .airlines-usecase-text {
      font-size: 14px;
      font-weight: 500;
      color: #111111;
    }

    /* ===== BENEFITS ===== */
    .airlines-benefits {
      padding: 90px 0;
      background: #ffffff;
    }
    .airlines-benefit-card {
      background: #f8f9ff;
      border-radius: 18px;
      padding: 36px 28px;
      height: 100%;
      border: 1px solid #eef0f8;
      text-align: center;
      transition: all 0.25s;
    }
    .airlines-benefit-card:hover {
      border-color: #021b8c;
      box-shadow: 0 10px 40px rgba(2,27,140,0.12);
      transform: translateY(-4px);
    }
    .airlines-benefit-svg-wrap {
      width: 64px;
      height: 64px;
      background: rgba(2,27,140,0.07);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .airlines-benefit-title {
      font-size: 16px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 12px;
    }
    .airlines-benefit-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.7;
    }

    /* ===== HOW IT WORKS ===== */
    .airlines-how {
      padding: 90px 0;
      background: #f8f9ff;
    }
    .airlines-steps-wrap {
      position: relative;
      margin-top: 50px;
    }
    .airlines-step-line {
      position: absolute;
      top: 36px;
      left: calc(12.5% + 18px);
      right: calc(12.5% + 18px);
      height: 2px;
      background: linear-gradient(90deg, #021b8c, #7dd3fc);
      z-index: 0;
    }
    .airlines-step-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .airlines-step-num-wrap {
      width: 72px;
      height: 72px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 4px solid #f8f9ff;
      box-shadow: 0 6px 20px rgba(2,27,140,0.25);
    }
    .airlines-step-num {
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
    }
    .airlines-step-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 10px;
    }
    .airlines-step-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
    }

    /* ===== WHY CHOOSE US ===== */
    .airlines-choose {
      padding: 90px 0;
      background: #ffffff;
    }
    .airlines-choose-card {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: #f8f9ff;
      border-radius: 14px;
      padding: 24px 22px;
      margin-bottom: 16px;
      border: 1px solid #eef0f8;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .airlines-choose-card:last-child { margin-bottom: 0; }
    .airlines-choose-card:hover {
      border-color: #021b8c;
      box-shadow: 0 6px 24px rgba(2,27,140,0.1);
    }
    .airlines-choose-svg-wrap {
      width: 50px;
      height: 50px;
      background: #021b8c;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .airlines-choose-title {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 6px;
    }
    .airlines-choose-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
    }
    .airlines-choose-left { padding-right: 30px; }

    /* ===== CTA ===== */
    .airlines-cta {
      background: linear-gradient(135deg, #021b8c 0%, #0a2dcc 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .airlines-cta-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.06;
    }
    .airlines-cta-title {
      font-size: 36px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .airlines-cta-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 36px;
      font-weight: 300;
    }
    .airlines-cta-btn-primary {
      display: inline-block;
      background: #ffffff;
      color: #021b8c;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      margin: 6px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .airlines-cta-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      color: #021b8c;
      text-decoration: none;
    }
    .airlines-cta-btn-outline {
      display: inline-block;
      background: transparent;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 32px;
      border-radius: 8px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      margin: 6px;
      transition: border-color 0.2s, background 0.2s;
    }
    .airlines-cta-btn-outline:hover {
      border-color: #ffffff;
      background: rgba(255,255,255,0.1);
      color: #ffffff;
      text-decoration: none;
    }
    .airlines-cta-contact {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin-top: 28px;
    }
    .airlines-cta-contact a { color: #ffffff; font-weight: 600; }
/* ===================== HERO ===================== */
    .softwaredevelopment-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a2db5 50%, #042299 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .softwaredevelopment-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(126,207,255,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .softwaredevelopment-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
    .softwaredevelopment-herobadge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #7ecfff;
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.3px;
    }
    .softwaredevelopment-herotitle {
      font-size: 48px;
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .softwaredevelopment-herotitle span { color: #7ecfff; }
    .softwaredevelopment-herosubtitle {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 520px;
      font-weight: 400;
    }
    .softwaredevelopment-herochecks {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .softwaredevelopment-herocheck {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
    }
    .softwaredevelopment-herobtn {
      display: inline-block;
      background: #fff;
      color: #021b8c;
      padding: 15px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .softwaredevelopment-herobtn:hover { background: #7ecfff; color: #021b8c; text-decoration: none; transform: translateY(-2px); }

    /* Hero Card */
    .softwaredevelopment-herocard {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(10px);
    }
    .softwaredevelopment-herocard-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .softwaredevelopment-herocard-title { color: #fff; font-weight: 700; font-size: 15px; }
    .softwaredevelopment-herocard-sub { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 2px; }
    .softwaredevelopment-smsbubble {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 12px;
    }
    .softwaredevelopment-smstype {
      font-size: 10px;
      font-weight: 700;
      color: #7ecfff;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .softwaredevelopment-smsbubble p {
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      margin: 0;
      line-height: 1.5;
    }
    .softwaredevelopment-smsbubble strong { color: #fff; }
    .softwaredevelopment-statrow {
      display: flex;
      gap: 8px;
      margin-top: 16px;
    }
    .softwaredevelopment-statitem {
      flex: 1;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 12px 8px;
      text-align: center;
    }
    .softwaredevelopment-statnum { font-size: 20px; font-weight: 800; color: #fff; }
    .softwaredevelopment-statlbl { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 2px; }

    @media (max-width: 767px) {
      .softwaredevelopment-herotitle { font-size: 30px; }
      .softwaredevelopment-hero { padding: 60px 0 50px; }
    }

    /* ===================== BREADCRUMB STRIP ===================== */
    .softwaredevelopment-breadcrumb {
      background: #f5f7ff;
      padding: 12px 0;
      border-bottom: 1px solid #e8ecff;
    }
    .softwaredevelopment-breadcrumb-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #666;
    }
    .softwaredevelopment-breadcrumb-inner a { color: #021b8c; text-decoration: none; font-weight: 500; }
    .softwaredevelopment-breadcrumb-inner a:hover { text-decoration: underline; }
    .softwaredevelopment-breadcrumb-inner span { color: #021b8c; font-weight: 600; }

    /* ===================== SECTION COMMON ===================== */
    .softwaredevelopment-section { padding: 80px 0; }
    .softwaredevelopment-section-sm { padding: 60px 0; }
    .softwaredevelopment-sectionlabel {
      display: inline-block;
      background: #eef1ff;
      color: #021b8c;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
    .softwaredevelopment-sectiontitle {
      font-size: 36px;
      font-weight: 800;
      color: #111111;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .softwaredevelopment-sectiontitle span { color: #021b8c; }
    .softwaredevelopment-sectiondesc {
      font-size: 15px;
      color: #555;
      line-height: 1.75;
      max-width: 620px;
    }
    .softwaredevelopment-divider {
      width: 56px;
      height: 4px;
      background: #021b8c;
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .softwaredevelopment-divider-center { margin-left: auto; margin-right: auto; }

    @media (max-width: 767px) {
      .softwaredevelopment-sectiontitle { font-size: 26px; }
      .softwaredevelopment-section { padding: 60px 0; }
    }

    /* ===================== ABOUT ===================== */
    .softwaredevelopment-about { background: #f9faff; }
    .softwaredevelopment-statsbox {
      background: #021b8c;
      border-radius: 20px;
      padding: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .softwaredevelopment-statcard {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
    }
    .softwaredevelopment-statcard-num {
      font-size: 40px;
      font-weight: 900;
      color: #7ecfff;
      line-height: 1;
      margin-bottom: 6px;
    }
    .softwaredevelopment-statcard-lbl {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ===================== WHY SMS ===================== */
    .softwaredevelopment-whycard {
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .softwaredevelopment-whycard:hover {
      border-color: #021b8c;
      box-shadow: 0 10px 32px rgba(2,27,140,0.12);
      transform: translateY(-4px);
    }
    .softwaredevelopment-whysvg {
      width: 52px;
      height: 52px;
      background: #eef1ff;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .softwaredevelopment-whytitle {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 8px;
    }
    .softwaredevelopment-whydesc {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }

    /* ===================== SERVICES ===================== */
    .softwaredevelopment-services { background: #021b8c; }
    .softwaredevelopment-services .softwaredevelopment-sectionlabel { background: rgba(255,255,255,0.15); color: #7ecfff; }
    .softwaredevelopment-services .softwaredevelopment-sectiontitle { color: #fff; }
    .softwaredevelopment-services .softwaredevelopment-sectiontitle span { color: #7ecfff; }
    .softwaredevelopment-services .softwaredevelopment-sectiondesc { color: rgba(255,255,255,0.75); }
    .softwaredevelopment-services .softwaredevelopment-divider { background: rgba(255,255,255,0.3); }
    .softwaredevelopment-servicecard {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 28px 24px;
      height: 100%;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .softwaredevelopment-servicecard::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #7ecfff, rgba(126,207,255,0));
      opacity: 0;
      transition: opacity 0.2s;
    }
    .softwaredevelopment-servicecard:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-4px);
    }
    .softwaredevelopment-servicecard:hover::before { opacity: 1; }
    .softwaredevelopment-servicenum {
      font-size: 11px;
      font-weight: 700;
      color: #7ecfff;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .softwaredevelopment-servicesvg {
      width: 48px;
      height: 48px;
      background: rgba(126,207,255,0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .softwaredevelopment-servicetitle {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .softwaredevelopment-servicedesc {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
      margin: 0;
    }

    /* ===================== FEATURES + USECASES ===================== */
    .softwaredevelopment-features { background: #f9faff; }
    .softwaredevelopment-featureitem {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid #edf0ff;
    }
    .softwaredevelopment-featureitem:last-child { border-bottom: none; }
    .softwaredevelopment-featurecheck {
      width: 30px;
      height: 30px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .softwaredevelopment-featuretext { font-size: 14px; color: #444; line-height: 1.6; }
    .softwaredevelopment-featuretext strong { display: block; color: #111; font-weight: 700; margin-bottom: 3px; font-size: 14px; }
    .softwaredevelopment-usecaseitem {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 12px;
      padding: 16px 20px;
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 600;
      color: #111111;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .softwaredevelopment-usecaseitem:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.1); }
    .softwaredevelopment-usecasesvg {
      width: 40px;
      height: 40px;
      background: #eef1ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ===================== BENEFITS ===================== */
    .softwaredevelopment-benefitcard {
      background: #fff;
      border-radius: 18px;
      padding: 32px 24px;
      text-align: center;
      border: 2px solid #e8ecff;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .softwaredevelopment-benefitcard:hover {
      border-color: #021b8c;
      box-shadow: 0 12px 36px rgba(2,27,140,0.12);
      transform: translateY(-4px);
    }
    .softwaredevelopment-benefitsvg {
      width: 64px;
      height: 64px;
      background: #eef1ff;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .softwaredevelopment-benefittitle {
      font-size: 17px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 10px;
    }
    .softwaredevelopment-benefitdesc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
      margin: 0;
    }

    /* ===================== HOW IT WORKS ===================== */
    .softwaredevelopment-howitworks { background: #f0f3ff; }
    .softwaredevelopment-stepcard {
      background: #fff;
      border-radius: 18px;
      padding: 30px 22px;
      text-align: center;
      height: 100%;
      position: relative;
      border: 2px solid #e8ecff;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .softwaredevelopment-stepcard:hover { border-color: #021b8c; box-shadow: 0 8px 28px rgba(2,27,140,0.12); }
    .softwaredevelopment-stepnum {
      width: 52px;
      height: 52px;
      background: #021b8c;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }
    .softwaredevelopment-steptitle {
      font-size: 16px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 10px;
    }
    .softwaredevelopment-stepdesc {
      font-size: 13px;
      color: #666;
      line-height: 1.65;
      margin: 0;
    }

    /* ===================== WHY CHOOSE US ===================== */
    .softwaredevelopment-choosecard {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 24px;
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 16px;
      margin-bottom: 16px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .softwaredevelopment-choosecard:last-child { margin-bottom: 0; }
    .softwaredevelopment-choosecard:hover { border-color: #021b8c; box-shadow: 0 6px 24px rgba(2,27,140,0.1); }
    .softwaredevelopment-choosesvg {
      width: 48px;
      height: 48px;
      background: #eef1ff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .softwaredevelopment-choosetitle {
      font-size: 15px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 5px;
    }
    .softwaredevelopment-choosedesc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
    .softwaredevelopment-whychoose-left p { font-size: 15px; color: #555; line-height: 1.75; }

    /* ===================== CTA ===================== */
    .softwaredevelopment-cta {
      background: linear-gradient(135deg, #021b8c 0%, #0e35d4 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .softwaredevelopment-cta::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
    .softwaredevelopment-ctatitle {
      font-size: 40px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .softwaredevelopment-ctadesc {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .softwaredevelopment-ctabtn-primary {
      display: inline-block;
      background: #fff;
      color: #021b8c;
      padding: 15px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      margin: 6px;
    }
    .softwaredevelopment-ctabtn-primary:hover { background: #7ecfff; color: #021b8c; text-decoration: none; transform: translateY(-2px); }
    .softwaredevelopment-ctabtn-outline {
      display: inline-block;
      background: transparent;
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      transition: all 0.2s;
      margin: 6px;
    }
    .softwaredevelopment-ctabtn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; border-color: rgba(255,255,255,0.7); }
    .softwaredevelopment-ctaphone { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 24px; }
    .softwaredevelopment-ctaphone a { color: #7ecfff; text-decoration: none; font-weight: 600; }
/* ===================== HERO ===================== */
    .mediaentertainment-hero {
      background: linear-gradient(135deg, #021b8c 0%, #0a2db5 55%, #042299 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .mediaentertainment-hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(126,207,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .mediaentertainment-hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      border-radius: 50%;
    }
    .mediaentertainment-herobadge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #7ecfff;
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .mediaentertainment-herotitle {
      font-size: 48px;
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .mediaentertainment-herotitle span { color: #7ecfff; }
    .mediaentertainment-herosubtitle {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 520px;
      font-weight: 400;
    }
    .mediaentertainment-herochecks {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .mediaentertainment-herocheck {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
    }
    .mediaentertainment-herobtn {
      display: inline-block;
      background: #fff;
      color: #021b8c;
      padding: 15px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .mediaentertainment-herobtn:hover { background: #7ecfff; color: #021b8c; text-decoration: none; transform: translateY(-2px); }
    .mediaentertainment-herocard {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(10px);
    }
    .mediaentertainment-herocard-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mediaentertainment-herocard-title { color: #fff; font-weight: 700; font-size: 15px; }
    .mediaentertainment-herocard-sub { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 2px; }
    .mediaentertainment-smsbubble {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 12px;
    }
    .mediaentertainment-smstype {
      font-size: 10px;
      font-weight: 700;
      color: #7ecfff;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .mediaentertainment-smsbubble p { color: rgba(255,255,255,0.85); font-size: 13px; margin: 0; line-height: 1.5; }
    .mediaentertainment-smsbubble strong { color: #fff; }
    .mediaentertainment-statrow { display: flex; gap: 8px; margin-top: 16px; }
    .mediaentertainment-statitem {
      flex: 1;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 12px 8px;
      text-align: center;
    }
    .mediaentertainment-statnum { font-size: 20px; font-weight: 800; color: #fff; }
    .mediaentertainment-statlbl { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 2px; }
    @media (max-width: 767px) {
      .mediaentertainment-herotitle { font-size: 30px; }
      .mediaentertainment-hero { padding: 60px 0 50px; }
    }

    /* ===================== SECTION COMMON ===================== */
    .mediaentertainment-section { padding: 80px 0; }
    .mediaentertainment-section-sm { padding: 60px 0; }
    .mediaentertainment-sectionlabel {
      display: inline-block;
      background: #eef1ff;
      color: #021b8c;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
    .mediaentertainment-sectiontitle {
      font-size: 36px;
      font-weight: 800;
      color: #111111;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .mediaentertainment-sectiontitle span { color: #021b8c; }
    .mediaentertainment-sectiondesc {
      font-size: 15px;
      color: #555;
      line-height: 1.75;
      max-width: 620px;
    }
    .mediaentertainment-divider {
      width: 56px;
      height: 4px;
      background: #021b8c;
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .mediaentertainment-divider-center { margin-left: auto; margin-right: auto; }
    @media (max-width: 767px) {
      .mediaentertainment-sectiontitle { font-size: 26px; }
      .mediaentertainment-section { padding: 60px 0; }
    }

    /* ===================== ABOUT ===================== */
    .mediaentertainment-about { background: #f9faff; }
    .mediaentertainment-statsbox {
      background: #021b8c;
      border-radius: 20px;
      padding: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .mediaentertainment-statcard {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
    }
    .mediaentertainment-statcard-num {
      font-size: 40px;
      font-weight: 900;
      color: #7ecfff;
      line-height: 1;
      margin-bottom: 6px;
    }
    .mediaentertainment-statcard-lbl {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ===================== WHY SMS ===================== */
    .mediaentertainment-whycard {
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .mediaentertainment-whycard:hover {
      border-color: #021b8c;
      box-shadow: 0 10px 32px rgba(2,27,140,0.12);
      transform: translateY(-4px);
    }
    .mediaentertainment-whysvg {
      width: 52px;
      height: 52px;
      background: #eef1ff;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .mediaentertainment-whytitle { font-size: 15px; font-weight: 700; color: #111111; margin-bottom: 8px; }
    .mediaentertainment-whydesc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

    /* ===================== SERVICES ===================== */
    .mediaentertainment-services { background: #021b8c; }
    .mediaentertainment-services .mediaentertainment-sectionlabel { background: rgba(255,255,255,0.15); color: #7ecfff; }
    .mediaentertainment-services .mediaentertainment-sectiontitle { color: #fff; }
    .mediaentertainment-services .mediaentertainment-sectiontitle span { color: #7ecfff; }
    .mediaentertainment-services .mediaentertainment-sectiondesc { color: rgba(255,255,255,0.75); }
    .mediaentertainment-services .mediaentertainment-divider { background: rgba(255,255,255,0.3); }
    .mediaentertainment-servicecard {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 28px 24px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .mediaentertainment-servicecard::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #7ecfff, rgba(126,207,255,0));
      opacity: 0;
      transition: opacity 0.2s;
    }
    .mediaentertainment-servicecard:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
    .mediaentertainment-servicecard:hover::before { opacity: 1; }
    .mediaentertainment-servicenum {
      font-size: 11px;
      font-weight: 700;
      color: #7ecfff;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .mediaentertainment-servicesvg {
      width: 48px;
      height: 48px;
      background: rgba(126,207,255,0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .mediaentertainment-servicetitle { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .mediaentertainment-servicedesc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }

    /* ===================== FEATURES + USE CASES ===================== */
    .mediaentertainment-features { background: #f9faff; }
    .mediaentertainment-featureitem {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid #edf0ff;
    }
    .mediaentertainment-featureitem:last-child { border-bottom: none; }
    .mediaentertainment-featurecheck {
      width: 30px;
      height: 30px;
      background: #021b8c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .mediaentertainment-featuretext { font-size: 14px; color: #444; line-height: 1.6; }
    .mediaentertainment-featuretext strong { display: block; color: #111; font-weight: 700; margin-bottom: 3px; font-size: 14px; }
    .mediaentertainment-usecaseitem {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 12px;
      padding: 16px 20px;
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 600;
      color: #111111;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .mediaentertainment-usecaseitem:hover { border-color: #021b8c; box-shadow: 0 4px 16px rgba(2,27,140,0.1); }
    .mediaentertainment-usecasesvg {
      width: 40px;
      height: 40px;
      background: #eef1ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ===================== BENEFITS ===================== */
    .mediaentertainment-benefitcard {
      background: #fff;
      border-radius: 18px;
      padding: 32px 24px;
      text-align: center;
      border: 2px solid #e8ecff;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .mediaentertainment-benefitcard:hover { border-color: #021b8c; box-shadow: 0 12px 36px rgba(2,27,140,0.12); transform: translateY(-4px); }
    .mediaentertainment-benefitsvg {
      width: 64px;
      height: 64px;
      background: #eef1ff;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .mediaentertainment-benefittitle { font-size: 17px; font-weight: 700; color: #111111; margin-bottom: 10px; }
    .mediaentertainment-benefitdesc { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

    /* ===================== HOW IT WORKS ===================== */
    .mediaentertainment-howitworks { background: #f0f3ff; }
    .mediaentertainment-stepcard {
      background: #fff;
      border-radius: 18px;
      padding: 30px 22px;
      text-align: center;
      height: 100%;
      border: 2px solid #e8ecff;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .mediaentertainment-stepcard:hover { border-color: #021b8c; box-shadow: 0 8px 28px rgba(2,27,140,0.12); }
    .mediaentertainment-stepnum {
      width: 52px;
      height: 52px;
      background: #021b8c;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }
    .mediaentertainment-steptitle { font-size: 16px; font-weight: 700; color: #111111; margin-bottom: 10px; }
    .mediaentertainment-stepdesc { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

    /* ===================== WHY CHOOSE US ===================== */
    .mediaentertainment-choosecard {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 24px;
      background: #fff;
      border: 2px solid #e8ecff;
      border-radius: 16px;
      margin-bottom: 16px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .mediaentertainment-choosecard:last-child { margin-bottom: 0; }
    .mediaentertainment-choosecard:hover { border-color: #021b8c; box-shadow: 0 6px 24px rgba(2,27,140,0.1); }
    .mediaentertainment-choosesvg {
      width: 48px;
      height: 48px;
      background: #eef1ff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mediaentertainment-choosetitle { font-size: 15px; font-weight: 700; color: #111111; margin-bottom: 5px; }
    .mediaentertainment-choosedesc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
    .mediaentertainment-whychoose-left p { font-size: 15px; color: #555; line-height: 1.75; }

    /* ===================== CTA ===================== */
    .mediaentertainment-cta {
      background: linear-gradient(135deg, #021b8c 0%, #0e35d4 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .mediaentertainment-cta::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
    .mediaentertainment-ctatitle { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
    .mediaentertainment-ctadesc { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
    .mediaentertainment-ctabtn-primary {
      display: inline-block;
      background: #fff;
      color: #021b8c;
      padding: 15px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      margin: 6px;
    }
    .mediaentertainment-ctabtn-primary:hover { background: #7ecfff; color: #021b8c; text-decoration: none; transform: translateY(-2px); }
    .mediaentertainment-ctabtn-outline {
      display: inline-block;
      background: transparent;
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      transition: all 0.2s;
      margin: 6px;
    }
    .mediaentertainment-ctabtn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; border-color: rgba(255,255,255,0.7); }
    .mediaentertainment-ctaphone { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 24px; }
    .mediaentertainment-ctaphone a { color: #7ecfff; text-decoration: none; font-weight: 600; }
    @media (max-width: 767px) {
      .mediaentertainment-ctatitle { font-size: 26px; }
    }

/* =========================================
   RESPONSIVE — 1199px and below
========================================= */
@media (max-width: 1199px) {
  .cl-banner-heading { font-size: 2.6rem; }
  .cl-block-title { font-size: 2rem; }
}

@media(max-width: 991px) { .bnk-fb-a, .bnk-fb-b, .bnk-fb-c { display: none; }.ins-fb-a, .ins-fb-b, .ins-fb-c { display: none; }.ret-fb-a, .ret-fb-b, .ret-fb-c { display: none; }.ad-hero-title { font-size: 2.2rem; }
  .ad-nav-links { display: none; }
  .ad-sec-title { font-size: 1.8rem; }
  .ad-step-arrow { display: none; }.tsms-hero h1{font-size:34px;}
  .tsms-section-title{font-size:28px;}
  .tsms-cta-title{font-size:28px;}
  .tsms-nav-links,.tsms-nav-cta-wrap{display:none;}
  .tsms-hamburger{display:flex;}.re-hero h1{font-size:34px;}
  .re-section-title{font-size:28px;}
  .re-cta-title{font-size:28px;}
  .re-nav-links,.re-nav-cta-wrap{display:none;}
  .re-hamburger{display:flex;}
  .cd-hamburger{display:block}
  .cd-hero h1{font-size:28px}
  .cd-section-title{font-size:24px}
  .cd-cta-title{font-size:24px}
 .tt-hamburger{display:block}
  .tt-hero-heading{font-size:28px}
  .tt-section-heading{font-size:24px}
  .tt-cta-heading{font-size:24px}
  .cl-navbar-toggler { display: block; }
  .cl-section-pad { padding: 60px 0; }
  .cl-section-pad-sm { padding: 50px 0; }
  .cl-hero { min-height: auto; padding: 70px 0 50px; }
  .cl-hero-title { font-size: 2.2rem; }
  .cl-hero-live-card { margin-top: 40px; }
  .cl-section-heading { font-size: 1.85rem; }
  .cl-cta-heading { font-size: 1.75rem; }
  .cl-how-step-arrow { display: none; }
  .cl-section-rule { margin-left: auto; margin-right: auto; }
  .cl-nav-hamburger-btn { display: block; }
  .cl-block-space { padding: 60px 0; }
  .cl-block-space-sm { padding: 50px 0; }
  .cl-banner-section { min-height: auto; padding: 70px 0 50px; }
  .cl-banner-heading { font-size: 2.2rem; }
  .cl-banner-panel-card { margin-top: 40px; }
  .cl-block-title { font-size: 1.85rem; }
  .cl-action-title { font-size: 1.75rem; }
  .cl-process-step-arrow { display: none; }
  .cl-block-rule { margin-left: auto; margin-right: auto; }
  .ecommerce-portal-nav-cta { display: none; }
      .ecommerce-portal-hamburger { display: block; }
      .ecommerce-portal-hero h1 { font-size: 34px; }
      .ecommerce-portal-why-grid { grid-template-columns: repeat(3, 1fr); }
      .ecommerce-portal-choose-left { padding-right: 0; margin-bottom: 40px; }
      .ecommerce-portal-step-line { display: none; }
}

  @media(max-width: 767px) {
    .edu-hero h1 { font-size: 1.9rem; }
    .edu-statsbar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1rem 0; }
    .edu-statsbar .stat-item:last-child { border-bottom: none; }
    .section-title { font-size: 1.6rem; }
    .edu-cta h2 { font-size: 1.7rem; }
    .stat-a, .stat-b, .stat-c { display: none; }
    .step-connector { display: none; }
    .adv-hero h1 { font-size: 1.9rem; }
    .adv-statsbar .astat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
     .adv-statsbar .astat-item:last-child { border-bottom: none; }
     .sec-heading { font-size: 1.6rem; }
     .adv-cta h2 { font-size: 1.75rem; }
     .hiw-connector { display: none; }
      .fmcg-hero h1 { font-size: 1.9rem; }
  .fmcg-statsbar .fs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
  .fmcg-statsbar .fs-item:last-child { border-bottom: none; }
  .f-title { font-size: 1.6rem; }
  .fmcg-cta h2 { font-size: 1.75rem; }
  .hiw-f-connector { display: none; }
  bnk-hero h1 { font-size: 1.9rem; }
  .bnk-si { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
  .bnk-si:last-child { border-bottom: none; }
  .b-title { font-size: 1.6rem; }
  .bnk-cta h2 { font-size: 1.75rem; }
  .bh-connector { display: none; }
  .ins-hero h1 { font-size: 1.9rem; }
  .ins-si { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
  .ins-si:last-child { border-bottom: none; }
  .b-title { font-size: 1.6rem; }
  .ins-cta h2 { font-size: 1.75rem; }
  .bh-connector { display: none; }
.ret-hero h1 { font-size: 1.9rem; }
  .ret-si { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
  .ret-si:last-child { border-bottom: none; }
  .b-title { font-size: 1.6rem; }
  .ret-cta h2 { font-size: 1.75rem; }
  .bh-connector { display: none; }
 .ad-hero-section { padding: 60px 0; min-height: auto; }
  .ad-hero-title { font-size: 1.8rem; }
  .ad-cta-title { font-size: 1.6rem; }
  .ad-sec-title { font-size: 1.5rem; }
  .ad-hero-card { margin-top: 40px; }
  .re-hero{padding:60px 0 40px;}
  .re-hero h1{font-size:28px;}
  .re-section{padding:60px 0;}
  .re-section-alt{padding:60px 0;}
  .re-btn-outline-white{margin-left:0;margin-top:12px;}
.ts-hero { padding: 60px 0 50px; }
      .ts-about-stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .ts-stat-row { flex-wrap: wrap; }
.consultant-hero { padding: 60px 0 50px; }
      .consultant-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .consultant-stats-row { flex-wrap: wrap; }
.cd-hero{padding:48px 0 40px}
  .cd-section-pad{padding:52px 0}
  .cd-hero h1{font-size:24px}
  .cd-page-banner h1{font-size:24px}
  .cd-phone-card{margin-top:32px}
.tt-hero-section{padding:48px 0 40px}
  .tt-section-pad{padding:52px 0}
  .tt-hero-heading{font-size:24px}
  .tt-page-banner h1{font-size:24px}
  .tt-sms-card{margin-top:32px}
  .cl-block-space { padding: 50px 0; }
  .cl-block-space-sm { padding: 40px 0; }
  .cl-banner-section { padding: 60px 0 44px; }
  .cl-banner-heading { font-size: 1.85rem; }
  .cl-banner-tagline { font-size: 0.9rem; }
  .cl-banner-action-btn { display: block; text-align: center; }
  .cl-block-title { font-size: 1.6rem; }
  .cl-block-desc { font-size: 0.87rem; }
  .cl-action-title { font-size: 1.5rem; }
  .cl-action-main-btn { display: block; width: 100%; margin: 6px 0; }
  .cl-action-ghost-btn { display: block; width: 100%; margin: 6px 0; }
  .cl-intro-figures-grid { padding: 16px; }
  .cl-advantage-card { flex-direction: column; }
  .cl-foot-bottom-strip { flex-direction: column; align-items: flex-start; }
  .cl-foot-policy-nav a { margin-left: 0; margin-right: 14px; }
.ecommerce-portal-hero { padding: 60px 0 50px; }
      .ecommerce-portal-hero h1 { font-size: 28px; }
      .ecommerce-portal-section-title { font-size: 26px; }
      .ecommerce-portal-why-grid { grid-template-columns: repeat(2, 1fr); }
      .ecommerce-portal-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .ecommerce-portal-about,
      .ecommerce-portal-why,
      .ecommerce-portal-services,
      .ecommerce-portal-features,
      .ecommerce-portal-benefits,
      .ecommerce-portal-how,
      .ecommerce-portal-choose,
      .ecommerce-portal-faq { padding: 60px 0; }
      .ecommerce-portal-cta-title { font-size: 26px; }
      .ecommerce-portal-feed-card { margin-top: 32px; }
     .airlines-hero { padding: 60px 0 50px; }
      .airlines-hero h1 { font-size: 28px; }
      .airlines-section-title { font-size: 26px; }
      .airlines-why-grid { grid-template-columns: repeat(2, 1fr); }
      .airlines-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .airlines-about,
      .airlines-why,
      .airlines-services,
      .airlines-features,
      .airlines-benefits,
      .airlines-how,
      .airlines-choose,
      .airlines-faq { padding: 60px 0; }
      .airlines-cta-title { font-size: 26px; }
      .airlines-feed-card { margin-top: 32px; }
     .softwaredevelopment-ctatitle { font-size: 28px; }
      .softwaredevelopment-statsbox { grid-template-columns: 1fr 1fr; gap: 14px; padding: 24px; }
  }

@media(max-width:575px){
  .cd-hero-checks{flex-direction:column}
  .cd-stat-row{flex-wrap:wrap}
  .cd-stat-item{flex:0 0 50%;margin-bottom:10px}
  .cd-stat-item+.cd-stat-item{border-left:none}
  .cd-stat-row .cd-stat-item:nth-child(odd){border-right:1px solid var(--cd-border)}
.tt-hero-checks{flex-direction:column}
  .tt-stats-row{flex-wrap:wrap}
  .tt-stat-block{flex:0 0 50%;margin-bottom:10px}
  .tt-stat-block+.tt-stat-block{border-left:none}
  .tt-stats-row .tt-stat-block:nth-child(odd){border-right:1px solid #dde3ff}
  .cl-block-space { padding: 44px 0; }
  .cl-banner-section { padding: 50px 0 36px; }
  .cl-banner-heading { font-size: 1.6rem; }
  .cl-banner-pill { font-size: 0.7rem; padding: 6px 12px; }
  .cl-banner-panel-card { padding: 18px; }
  .cl-banner-metric-num { font-size: 1.1rem; }
  .cl-block-title { font-size: 1.42rem; }
  .cl-intro-figure-num { font-size: 1.6rem; }
  .cl-intro-figures-grid { padding: 12px; }
  .cl-reason-card { padding: 20px 14px; }
  .cl-offering-card { padding: 20px 18px; }
  .cl-impact-card { padding: 22px 16px; }
  .cl-action-section { padding: 50px 0; }
  .cl-action-title { font-size: 1.3rem; }
.ecommerce-portal-why-grid { grid-template-columns: 1fr 1fr; }
      .ecommerce-portal-stats-grid { grid-template-columns: 1fr 1fr; }
.airlines-why-grid { grid-template-columns: 1fr 1fr; }
      .airlines-stats-grid { grid-template-columns: 1fr 1fr; }
}