
     /* HERO — split layout with tilt */
        .hero {
            padding: 60px 0 80px;
            background: linear-gradient(135deg, #fff 0%, #fafcff 100%);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .hero-badge {
            background: #e2f0ee;
            color: #1d7a6b;
            display: inline-block;
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 24px;
            border: 1px solid rgba(29,122,107,0.2);
        }

        .hero p {
            font-size: 1.2rem;
            color: #2d3e55;
            /* max-width: 550px; */
            margin-bottom: 32px;
        }

        .hero-visual {
            background: #e2f0ee;
            border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
            padding: 30px;
            box-shadow: 40px 40px 60px -40px rgba(0,80,70,0.3);
            transform: rotate(2deg);
            transition: transform 0.3s ease;
        }

        .hero-visual img {
            max-width: 100%;
            height: 350px;
            border-radius: 24px;
            filter: grayscale(0.2);
        }

        .image-placeholder {
            background: #c4d9d4;
            height: 340px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--deep);
            font-size: 1.4rem;
            gap: 20px;
            box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
        }

    /* process timeline — vertical but different */
        .process-scaffold {
            display: flex;
            flex-direction: column;
            gap: 0px;
            margin: 60px 0;
        }

        .process-node {
            display: flex;
            gap: 40px;
            padding: 30px 0;
            border-bottom: 1px dashed #d0dde8;
        }

        .process-node:last-child {
            border-bottom: none;
        }

        .process-left {
            width: 180px;
            font-weight: 700;
            font-size: 2.5rem;
            color: transparent;
            -webkit-text-stroke: 2px #1d7a6b;
            opacity: 0.5;
        }

        .process-right h4 {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .flip-card-back {
            align-items: center;
            justify-content: center;
            transform: rotateY(180deg);
            background-color: #1d7a6b!important;
            color: white!important;
        }

    /* .services-section::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, #e0f0fa 0%, #ffffff 80%);
      border-radius: 50%;
      z-index: 0;
      opacity: 0.6;
    }

    .services-content {
      position: relative;
      z-index: 2;
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #165c50;
      line-height: 1.1;
      margin-bottom: 1rem;
    }*/

    .section-header p {
      font-size: 1.25rem;
      color: #165c50;
      /* max-width: 720px; */
      font-weight: 400;
    }

    .service-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin: 48px 0 64px 0;
    } 

    .pillar-card {
      display: flex;
      background: #ffffff;
      border: 1px solid #e7edf4;
      border-radius: 32px;
      padding: 32px 28px;
      transition: all 0.2s ease;
      box-shadow: 0 5px 18px rgba(0, 20, 40, 0.03);
      margin: 25px 0;
    }

    .pillar-card:hover {
      border-color: #bdd8eb;
      box-shadow: 0 20px 28px -12px rgba(29, 96, 142, 0.18);
      transform: translateY(-4px);
    }

    .pillar-icon {
      font-size: 2.5rem;
      color:  #1d7a6b;
      margin-right: 24px;
      background: #eef2f5;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 22px;
    }

    .pillar-card h3 {
      font-size: 1.9rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      color: #165c50;
    }

    .pillar-card p {
      color: #165c50;
      font-size: 1.05rem;
      margin-bottom: 0;
    }

    .platform-grid {
      display: grid;
      grid-template-columns: repeat(4, 2fr);
      gap: 24px;
      /* margin-bottom: 40px; */
    }

    .platform-item {
      background: #e2f0ee;
      border-radius: 28px;
      padding: 28px 30px;
      border: 1px solid #e2f0ee;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      flex-direction: column;
    }

    .platform-item:hover {
      background: #e2f0ee;
    }

    .platform-name {
      /* display: flex; */
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .platform-name i {
      font-size: 3rem;
      color: #1d7a6b;
      width: 48px;
    }

    .platform-name h4 {
      font-size: 1.4rem;
      font-weight: 650;
      letter-spacing: -0.02em;
      color: #165c50;
    }

    .platform-desc {
      color: #165c50;
      font-size: 1.05rem;
      margin-bottom: 24px;
      line-height: 1.4;
    }


    .enterprise-note {
      background: #e2f0ee;
      border-radius: 24px;
      padding: 16px 24px;
      margin: 12px 0 18px 0;
      font-style: italic;
      border-left: 5px solid #1d7a6b;
    }

    .btn-platform {
      align-self: flex-start;
      background: white;
      border: 1.5px solid #1d7a6b;
      color: #1d7a6b;
      padding: 12px 16px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    .btn-platform:hover {
      background: #1d7a6b;
      color: white;
      border-color: #1d7a6b;
    }

    .btn-platform i {
      font-size: 1.2rem;
    }

    .btn-enterprise {
      background:  #1d7a6b;
      color: white;
      border: none;
      padding: 14px 15px;
      margin-left: 0;
      /* margin-top: 16px; */
      box-shadow: 0 10px 18px -8px #1b6b8f70;
    }

    .btn-enterprise:hover {
      background: #165c50;
    }

    /* closing sentence */
    .platform-select-note {
      margin-top: 48px;
      background: #e2f0ee;
      border-radius: 20px;
      padding: 20px 36px;
      font-size: 1.1rem;
      font-weight: 500;
      color: #165c50;
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid #92dacf;
    }

    .platform-select-note i {
      font-size: 1.5rem;
      color: #1d7a6b;
    }

    /* features check — new style */
        .check-big {
            padding: 40px;          
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .check-big li {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1.2rem;
            font-weight: 500;
            /* background: #e2f0ee; */
            padding: 10px 18px;
            border: 1px solid #a0e0d6 ;
            border-radius: 60px;
        }

        .check-big li i {
            color: #1d7a6b;
            font-size: 1.5rem;
        }
        .single-services-box .icon i {
            font-size: 60px!important;
            color: #1d7a6b;
        }

        /* header */
        .pricing-header {
            margin-bottom: 3rem;
        }

        .section-pill {
            display: inline-block;
            background: rgba(37, 99, 235, 0.08);
            color: #1d7a6b;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(37, 99, 235, 0.2);
            margin-bottom: 1rem;
        }

        .h1-sub {
            font-size: 1.3rem;
            font-weight: 400;
            color: #165c50;
            margin-top: 0.5rem;
            border-left: 4px solid #1d7a6b;
            padding-left: 1.2rem;
        }

        /* price grid */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            margin: 3rem 0 2rem 0;
        }

        .price-column {
            background: #ffffff;
            border: 1px solid #e6edf6;
            border-radius: 2.2rem;
            padding: 2rem 1.8rem 2rem 1.8rem;
            box-shadow: 0 8px 20px -12px rgba(0, 32, 64, 0.12);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .price-column:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 35px -14px rgba(20, 80, 150, 0.25);
            border-color: #c7daf0;
        }

        .tier-name {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #1d7a6b;
            margin-bottom: 0.5rem;
        }

        .tier-best {
            font-size: 1rem;
            font-weight: 500;
            color: #1d7a6b;
            background: #e2f0ee;
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            margin: 0.5rem 0 1.2rem 0;
            border: 1px solid #afebe2;
        }

        .price-tag {
            margin: 1rem 0 1.5rem 0;
            border-bottom: 2px dashed #aae9df;
            padding-bottom: 1.5rem;
        }

        .price-inr {
            font-size: 2rem;
            font-weight: 700;
            color: #165c50;
            line-height: 1.2;
        }

        .price-usd {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1d7a6b;
            margin-top: 0.2rem;
        }

        .price-note {
            font-size: 0.9rem;
            color: #1d7a6b;
            margin-top: 0.4rem;
        }

        .scope-title {
            font-weight: 600;
            color: #165c50;
            font-size: 1.1rem;
            margin: 0.8rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .scope-title i {
            color: #1d7a6b;
        }

        .scope-list {
            list-style: none;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .scope-list li {
            display: flex;
            gap: 0.7rem;
            align-items: flex-start;
            font-size: 1rem;
            color: #165c50;
            margin-bottom: 0.9rem;
            line-height: 1.4;
        }

        .scope-list i.fa-check-circle {
            color: #1e7e34;
            font-size: 1.1rem;
            margin-top: 0.1rem;
            min-width: 1.2rem;
        }

        .ideal-text {
            background: #e2f0ee;
            padding: 1rem 1.2rem;
            border-radius: 1.5rem;
            font-size: 0.95rem;
            color: #165c50;
            border-left: 4px solid #1d7a6b;
        }

        .enterprise-footnote {
            margin-top: 0.8rem;
            background: #e2f0ee;
            border-radius: 1rem;
            padding: 1rem;
            font-size: 0.95rem;
            color: #1d7a6b;
            border: 1px solid #8de2d5;
        }

        .enterprise-footnote i {
            color: #1d7a6b;
            margin-right: 0.5rem;
        }

        .disclaimer-section {
            margin-top: 3rem;
            padding: 1.8rem 2rem;
            background: #f2f6fc;
            border-radius: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.8rem;
            border: 1px solid #dae6f5;
        }

        .disclaimer-text {
            font-size: 1rem;
            color: #165c50;
            max-width: 700px;
            line-height: 1.5;
        }

        .disclaimer-text i {
            color: #1d7a6b;
            margin-right: 0.5rem;
        }

        .contact-btn {
            background: #165c50;
            border: none;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 8px 16px -6px rgba(10, 40, 80, 0.3);
            transition: all 0.2s;
            cursor: default; 
            border: 1px solid #165c50;
            letter-spacing: 0.2px;
        }

        .contact-btn i {
            font-size: 1.2rem;
            transition: transform 0.1s;
        }

        .contact-btn:hover {
            background: #165c50;
            box-shadow: 0 12px 22px -10px #165c50;
            transform: scale(1.02);
        }

        @media (max-width: 1000px) {
            .price-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card {
                padding: 2rem;
            }
        }

        @media (max-width: 700px) {
            .price-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            .disclaimer-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .small-note {
            font-size: 0.85rem;
            color: #e2f0ee;
            margin-top: 0.5rem;
        }

        .currency-sep {
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            flex-wrap: wrap;
        }

        .accordion-button:not(.collapsed) {
          color: #1d7a6b!important;
        }

    @media (max-width: 900px) {
      .service-pillars, .platform-grid {
        grid-template-columns: 1fr;
      }
      .section-header h2 { font-size: 2.3rem; }
      .platform-name h4 { font-size: 1.6rem; }
      .platform-desc { padding-left: 0; }
      .btn-platform { margin-left: 0; }
    }
