/*--------------------------------------------------------------
# Hayagreeva Tech Solutions - Interactive Enhancements
# Shared components used across all pages (loaded after page CSS)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero enhancements
--------------------------------------------------------------*/
.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 18px;
}

.hero .typed-wrap {
    color: var(--accent-color);
    border-right: 3px solid var(--accent-color);
    padding-right: 4px;
    animation: blink-caret 0.8s step-end infinite;
    white-space: nowrap;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-color); }
}

.hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn-primary-cta,
.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-cta {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.btn-primary-cta:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.btn-outline-cta {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-cta:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Stats / counters strip
--------------------------------------------------------------*/
.stats-strip {
    background: linear-gradient(135deg, #135c98 0%, #0d3f6b 100%);
    padding: 48px 0;
}

.stats-strip .stat-item {
    text-align: center;
    color: #ffffff;
    padding: 10px 0;
}

.stats-strip .stat-item i {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
    color: #9fd0f5;
}

.stats-strip .stat-item .purecounter,
.stats-strip .stat-item .stat-suffix {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.1;
}

.stats-strip .stat-item p {
    margin: 6px 0 0;
    font-size: 15px;
    color: #d4e8f8;
}

/*--------------------------------------------------------------
# Feature / why-choose-us cards
--------------------------------------------------------------*/
.feature-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(19, 92, 152, 0.14);
    border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.feature-card .feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14.5px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/*--------------------------------------------------------------
# Process / how-we-work steps
--------------------------------------------------------------*/
.process-step {
    position: relative;
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px 24px 24px;
    height: 100%;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(19, 92, 152, 0.15);
}

.process-step .step-number {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--heading-font);
    box-shadow: 0 6px 14px rgba(19, 92, 152, 0.35);
}

.process-step h4 {
    font-size: 17px;
    margin: 14px 0 8px;
}

.process-step p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials slider (homepage)
--------------------------------------------------------------*/
.testimonials-slider {
    overflow: hidden;
    padding-bottom: 50px;
}

.testimonial-card {
    background: var(--surface-color);
    border-radius: 14px;
    padding: 30px 28px;
    height: 100%;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(19, 92, 152, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-card .quote-icon {
    color: color-mix(in srgb, var(--accent-color), transparent 55%);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    font-style: italic;
    flex-grow: 1;
    color: color-mix(in srgb, var(--default-color), transparent 8%);
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 15px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--heading-font);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info h5 {
    margin: 0;
    font-size: 15.5px;
}

.testimonial-card .author-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.testimonials-slider .swiper-pagination-bullet {
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# FAQ accordion
--------------------------------------------------------------*/
.faq-section .accordion-item {
    border: 1px solid rgba(19, 92, 152, 0.12);
    border-radius: 10px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-section .accordion-button {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    padding: 18px 22px;
    background: var(--surface-color);
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--accent-color), transparent 93%);
    color: var(--accent-color);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    padding: 18px 22px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.cta-band {
    background: linear-gradient(135deg, #135c98 0%, #0d3f6b 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.cta-band::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -80px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-band h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 8px;
}

.cta-band p {
    color: #d4e8f8;
    margin-bottom: 0;
}

.cta-band .btn-primary-cta {
    background: #ffffff;
    color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.cta-band .btn-primary-cta:hover {
    background: #eaf4fc;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service page content cards
--------------------------------------------------------------*/
.service-topic-card {
    background: var(--surface-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    padding: 22px 22px 18px;
    margin-bottom: 18px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.service-topic-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(19, 92, 152, 0.13);
}

.service-topic-card .topic-icon {
    color: var(--accent-color);
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.service-topic-card h5 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.service-topic-card p {
    font-size: 14.5px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 12%);
}

/* Tech badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 20px;
}

.tech-badges span {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tech-badges span:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Contact form feedback
--------------------------------------------------------------*/
.php-email-form .form-feedback {
    display: none;
    margin: 0 auto 14px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
}

.php-email-form .form-feedback.success {
    display: block;
    background: #e6f6ec;
    color: #1a7a3d;
    border: 1px solid #b7e4c7;
}

.php-email-form .form-feedback.error {
    display: block;
    background: #fdeaea;
    color: #b02a37;
    border: 1px solid #f5c2c7;
}

.php-email-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/*--------------------------------------------------------------
# Small utilities
--------------------------------------------------------------*/
.section-lead {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Products showcase
--------------------------------------------------------------*/
.product-card {
    background: var(--surface-color);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(19, 92, 152, 0.12);
    border-color: rgba(19, 92, 152, 0.35);
}

.product-card.flagship {
    border: 2px solid var(--accent-color);
    background: linear-gradient(180deg, rgba(19, 92, 152, 0.04), rgba(19, 92, 152, 0));
}

/* Full-width dominant flagship hero */
.product-card.flagship-hero {
    position: relative;
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(19, 92, 152, 0.10), rgba(19, 92, 152, 0.02));
    padding: 40px 44px 44px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(19, 92, 152, 0.16);
}
.product-card.flagship-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 66px rgba(19, 92, 152, 0.24);
}
.flagship-ribbon {
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 7px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(19, 92, 152, 0.35);
}
.flagship-ribbon i { margin-right: 6px; }
.flagship-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}
.flagship-hero h4 { font-size: 2rem; margin-top: 10px; }
.flagship-hero .product-tagline { font-size: 1.15rem; }
.flagship-hero > .flagship-grid > .flagship-main > p { font-size: 1.02rem; }
.flagship-hero .product-icon { width: 60px; height: 60px; font-size: 1.7rem; }
.flagship-points {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(19, 92, 152, 0.14);
    border-radius: 14px;
    padding: 22px 24px !important;
}
.flagship-points li { margin-bottom: 14px; font-size: 1rem; }
.flagship-hero .product-cta { margin-top: 18px; font-size: 1.05rem; }
@media (max-width: 900px) {
    .flagship-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-card.flagship-hero { padding: 34px 24px 30px; }
    .flagship-hero h4 { font-size: 1.6rem; }
}

.product-card .product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.product-card .product-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(19, 92, 152, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: var(--accent-color);
    color: #ffffff;
}

.product-status {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.product-status.live {
    background: #e6f6ec;
    color: #14672f;
    border: 1px solid #b7e4c7;
}

.product-status.building {
    background: #fff4e6;
    color: #93430a;
    border: 1px solid #fed7aa;
}

.product-status.soon {
    background: #eef2f7;
    color: #3d4f63;
    border: 1px solid #d7dfe9;
}

.product-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.product-card .product-tagline {
    font-size: 13.5px;
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 12px;
}

.product-card > p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
}

.product-card .product-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.product-card .product-points li {
    font-size: 14px;
    color: #4b5563;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.product-card .product-points li i {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.product-card .product-cta {
    align-self: flex-start;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.product-card .product-cta:hover {
    gap: 10px;
}

/*--------------------------------------------------------------
# Platform positioning strip
--------------------------------------------------------------*/
.platform-strip {
    background: linear-gradient(135deg, #0d3f6b 0%, #135c98 60%, #1a70b8 100%);
    border-radius: 16px;
    padding: 44px 40px;
    color: #ffffff;
    text-align: center;
}

.platform-strip h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.platform-strip p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 820px;
    margin: 0 auto;
    font-size: 15.5px;
}

.platform-strip .platform-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.platform-strip .platform-pills span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13.5px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Upcoming / launching soon
--------------------------------------------------------------*/
.upcoming-card {
    background: var(--surface-color);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 26px 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(19, 92, 152, 0.1);
}

.upcoming-card .upcoming-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fff4e6;
    color: #c2410c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.upcoming-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.upcoming-card p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
}

.upcoming-card .upcoming-eta {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: #93430a;
    background: #fff4e6;
    border-radius: 50px;
    padding: 4px 12px;
}

.btn-accent-cta {
    color: #ffffff;
    background: #c2410c;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-accent-cta:hover {
    background: #9a3412;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(194, 65, 12, 0.3);
}

/*--------------------------------------------------------------
# 3D & motion effects
--------------------------------------------------------------*/
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#hero-particles.injected {
    z-index: 1;
}

/* keep page-title text above injected particles */
[class*="page-title"] .title-container,
[class*="page-title"] .container {
    position: relative;
    z-index: 2;
}

[class*="page-title"] .title-container {
    position: absolute;
}

/*--------------------------------------------------------------
# Tech strength showcase (inner pages)
--------------------------------------------------------------*/
.tech-strength {
    background: linear-gradient(135deg, #0d3f6b 0%, #135c98 100%);
    border-radius: 14px;
    padding: 36px 32px;
    color: #ffffff;
    margin: 34px 0;
}

.tech-strength h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}

.tech-strength > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    margin-bottom: 20px;
}

.tech-strength .tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-strength .tech-grid span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
}

.tech-strength .tech-grid span:hover {
    background: #ffffff;
    color: #135c98;
    transform: translateY(-3px);
}

.tech-strength .tech-grid span i {
    font-size: 15px;
}

/* Outcome stats row for inner pages */
.outcome-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.outcome-row .outcome {
    background: var(--surface-color);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-row .outcome:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(19, 92, 152, 0.12);
}

.outcome-row .outcome .num {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.outcome-row .outcome .lbl {
    font-size: 13px;
    color: #4b5563;
    margin-top: 4px;
}

.tilt-3d {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-3d .tilt-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.hero .hero-img,
.hero .hero-badge {
    will-change: transform;
}

/* Platform strip: animated gradient + floating depth orbs */
.platform-strip {
    position: relative;
    overflow: hidden;
    background-size: 220% 220%;
    animation: platform-gradient 14s ease infinite;
}

.platform-strip::before,
.platform-strip::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.platform-strip::before {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    top: -60px;
    right: 8%;
    animation: orb-float 9s ease-in-out infinite;
}

.platform-strip::after {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
    bottom: -90px;
    left: 5%;
    animation: orb-float 12s ease-in-out infinite reverse;
}

.platform-strip > * {
    position: relative;
    z-index: 1;
}

@keyframes platform-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-26px, 22px) scale(1.12); }
}

/* Upcoming icons: gentle levitation */
.upcoming-card .upcoming-icon {
    animation: icon-levitate 4.5s ease-in-out infinite;
}

.upcoming-card:nth-child(odd) .upcoming-icon {
    animation-delay: 1.2s;
}

@keyframes icon-levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .platform-strip,
    .platform-strip::before,
    .platform-strip::after,
    .upcoming-card .upcoming-icon {
        animation: none;
    }
}

@media (max-width: 768px) {
    .cta-band {
        padding: 34px 24px;
        text-align: center;
    }

    .cta-band .btn-primary-cta {
        margin-top: 18px;
    }

    .stats-strip .stat-item .purecounter,
    .stats-strip .stat-item .stat-suffix {
        font-size: 32px;
    }

    .platform-strip {
        padding: 34px 22px;
    }

    .product-card {
        padding: 26px 22px;
    }
}




/* Bulletproof entrance animation: pure CSS, no JS, base opacity is 1 so it can never blank */
@keyframes htsFadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
[data-aos]{opacity:1;animation:htsFadeUp .7s cubic-bezier(.2,.7,.3,1) both;}
@media (prefers-reduced-motion: reduce){[data-aos]{animation:none}}
