/* ============================================================
   HASMAN — assets/css/pages/home.css
   Complete updated stylesheet for index.php (Home Page)
   Includes: Hero, Stats, Services, Why Hasman, Solutions,
             Competencies Strip, Testimonials, Vision Strip,
             Contact CTA — all responsive
   ============================================================ */


/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: var(--navbar-height);
}

/* grid-line overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ── Badge ── */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(0, 176, 240, 0.15);
    border: 1px solid rgba(0, 176, 240, 0.35);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--sp-6);
}

/* ── Headline ── */
.hero__headline {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    font-weight: 700;
    color: var(--color-white);
    line-height: var(--leading-tight);
    margin-bottom: var(--sp-6);
    perspective: 1000px;
}

.hero__typed-wrap {
    color: var(--accent);
    white-space: nowrap;
    display: block;
}

.hero__typed-wrap .typed-cursor {
    color: var(--accent);
    font-weight: 300;
}

/* ── Sub-copy ── */
.hero__sub {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-8);
    max-width: 500px;
}

/* ── CTA buttons ── */
.hero__actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-bottom: var(--sp-6);
}

/* ── Trust badges row ── */
.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-ui);
    letter-spacing: 0.01em;
}

.hero__trust-item svg {
    flex-shrink: 0;
}

/* ── Right graphic ── */
.hero__graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__svg-graphic {
    width: 100%;
    max-width: 480px;
    animation: float 3.5s ease-in-out infinite;
}

/* ── Scroll indicator ── */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}


/* ═══════════════════════════════════════════════════════════
   2. STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats-section {
    background: var(--color-navy);
    padding-block: var(--sp-16);
}

.stats-section__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(0, 176, 240, 0.2);
    border: 1px solid rgba(0, 176, 240, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card {
    background: var(--color-navy);
    padding: var(--sp-10) var(--sp-6);
    text-align: center;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 0 0 2px 2px;
}

.stat-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.stat-card__label {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   3. SERVICES OVERVIEW
   ═══════════════════════════════════════════════════════════ */
.services-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-2);
}

.service-big-card {
    border-radius: var(--radius-xl);
    padding: var(--sp-10) var(--sp-8);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.service-big-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-big-card--enterprise { background: var(--grad-navy); }
.service-big-card--ai         { background: var(--grad-sky); }

/* Decorative circle */
.service-big-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.service-big-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--sp-5);
    flex-shrink: 0;
}

.service-big-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--sp-4);
}

.service-big-card__desc {
    font-size: var(--text-sm);
    opacity: 0.82;
    margin-bottom: var(--sp-5);
    line-height: var(--leading-loose);
}

.service-big-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
    padding: 0;
}

.service-big-card__list li {
    font-size: var(--text-sm);
    opacity: 0.85;
    padding-left: var(--sp-5);
    position: relative;
    line-height: var(--leading-snug);
}

.service-big-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    top: 1px;
}

/* Platform chips */
.service-big-card__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: var(--sp-6);
    margin-top: auto;
}

.platform-tag {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
}

.platform-tag:hover {
    background: rgba(0, 176, 240, 0.25);
    border-color: rgba(0, 176, 240, 0.55);
}


/* ═══════════════════════════════════════════════════════════
   4. WHY HASMAN
   ═══════════════════════════════════════════════════════════ */
.why-hasman__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--sp-16);
    align-items: start;
}

.why-hasman__left {
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
}

.why-hasman__display {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: var(--leading-tight);
    margin-bottom: var(--sp-4);
}

.why-hasman__display span { color: var(--accent); }

.why-big-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: var(--leading-tight);
}

.why-big-title span { color: var(--accent); }

.why-hasman__accent-line {
    width: 56px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: var(--sp-5);
}

.why-hasman__tagline {
    font-size: var(--text-md);
    color: #555;
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-6);
}

.why-hasman__cta {
    display: inline-block;
}

.why-hasman__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}

.feature-tile {
    background: var(--color-white);
    border: 1px solid #E8F4FB;
    border-radius: var(--radius-lg);
    padding: var(--sp-6) var(--sp-5);
    transition: box-shadow var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out);
}

.feature-tile:hover {
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.1);
    transform: translateY(-4px);
    border-color: rgba(0, 176, 240, 0.4);
}

.feature-tile__icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 176, 240, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
}

.feature-tile__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: var(--sp-2);
}

.feature-tile p {
    font-size: var(--text-sm);
    color: #555;
    line-height: var(--leading-loose);
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   5. SOLUTIONS TEASER
   ═══════════════════════════════════════════════════════════ */
.solutions-teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-10);
}

.solution-teaser-card {
    background: var(--color-white);
    border: 1px solid #E8F4FB;
    border-radius: var(--radius-lg);
    padding: var(--sp-7) var(--sp-6);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out),
                border-top-color var(--duration-base) var(--ease-out);
    border-top: 3px solid transparent;
}

.solution-teaser-card:hover {
    box-shadow: 0 12px 40px rgba(0, 32, 96, 0.1);
    transform: translateY(-5px);
    border-top-color: var(--accent);
}

.solution-teaser-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-4);
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.solution-teaser-card__industry {
    font-size: var(--text-xs);
    font-weight: 500;
    color: #888;
    font-family: var(--font-ui);
}

.solution-teaser-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: var(--sp-3);
    line-height: var(--leading-snug);
}

.solution-teaser-card__problem {
    font-size: var(--text-sm);
    color: #555;
    line-height: var(--leading-loose);
    flex-grow: 1;
    margin-bottom: var(--sp-4);
}

.solution-teaser-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--accent);
    background: rgba(0, 176, 240, 0.08);
    border: 1px solid rgba(0, 176, 240, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.solution-teaser-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.solution-teaser-card__link svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.solution-teaser-card__link:hover svg {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
    margin-top: var(--sp-12);
}


/* ═══════════════════════════════════════════════════════════
   6. COMPETENCIES MARQUEE STRIP
   ═══════════════════════════════════════════════════════════ */
.competencies-strip {
    background: var(--color-navy);
    padding: var(--sp-6) 0;
    overflow: hidden;
    position: relative;
}

.competencies-strip__label {
    text-align: center;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--sp-4);
}

.competencies-strip__track {
    overflow: hidden;
    position: relative;
}

.competencies-strip__track::before,
.competencies-strip__track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.competencies-strip__track::before {
    left: 0;
    background: linear-gradient(to right, var(--color-navy), transparent);
}

.competencies-strip__track::after {
    right: 0;
    background: linear-gradient(to left, var(--color-navy), transparent);
}

.competencies-strip__inner {
    display: flex;
    gap: var(--sp-6);
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.competencies-strip__track:hover .competencies-strip__inner {
    animation-play-state: paused;
}

.competencies-strip__item {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    padding: 0.4rem 1.25rem;
    border: 1px solid rgba(0, 176, 240, 0.2);
    border-radius: var(--radius-full);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    cursor: default;
}

.competencies-strip__item:hover {
    color: var(--accent);
    border-color: rgba(0, 176, 240, 0.5);
    background: rgba(0, 176, 240, 0.06);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════
   7. TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
    overflow: hidden;
}

/* Swiper wrapper */
.testimonials__swiper {
    padding-bottom: 3.5rem !important;
    overflow: visible;
}

.testimonials__swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials__swiper .swiper-slide {
    height: auto;
}

/* ── Card ── */
.testimonial-card {
    background: var(--color-white);
    border: 1px solid #E8F4FB;
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: box-shadow var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out);
    box-shadow: 0 2px 16px rgba(0, 32, 96, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 32, 96, 0.12);
    border-color: rgba(0, 176, 240, 0.35);
}

/* Header row */
.testimonial-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
}

/* Giant opening quote */
.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.75;
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: 0.25rem;
    user-select: none;
    pointer-events: none;
}

/* Testimonial body */
.testimonial-card__text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text);
    flex-grow: 1;
    margin: 0 0 1.5rem;
    font-style: italic;
}

/* Footer */
.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid #E8F4FB;
    padding-top: 1.25rem;
    margin-top: auto;
}

.testimonial-card__logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: contain;
    border: 1px solid #E8F4FB;
    flex-shrink: 0;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy), var(--accent));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card__role {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
}

.testimonial-card__company {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--color-subtle);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Swiper nav ── */
.testimonials__swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.testimonials__prev,
.testimonials__next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-navy);
    background: transparent;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--duration-base),
                color var(--duration-base),
                border-color var(--duration-base),
                transform 0.2s;
    position: static;
    margin: 0;
    flex-shrink: 0;
}

.testimonials__prev:hover,
.testimonials__next:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: scale(1.08);
}

/* Hide Swiper's built-in arrows */
.testimonials__prev::after,
.testimonials__next::after {
    display: none;
}

/* Pagination dots */
.testimonials__dots {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials__dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-navy);
    opacity: 0.2;
    margin: 0 !important;
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.testimonials__dots .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background: var(--accent);
}


/* ═══════════════════════════════════════════════════════════
   8. VISION STRIP
   ═══════════════════════════════════════════════════════════ */
.vision-strip {
    padding-block: var(--sp-20);
    background: var(--grad-sky);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-strip__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
}

.vision-strip__quote-mark {
    font-family: var(--font-display);
    font-size: 18rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
    user-select: none;
}

.vision-strip__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 700;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--leading-snug);
}

.vision-strip__cta {
    /* inherits .btn--outline-white from global components.css */
}


/* ═══════════════════════════════════════════════════════════
   9. CONTACT CTA
   ═══════════════════════════════════════════════════════════ */
.contact-cta {
    background: var(--grad-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.contact-cta__inner {
    position: relative;
    z-index: 1;
}

.contact-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--sp-4);
}

.contact-cta__sub {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-inline: auto;
    line-height: var(--leading-loose);
}

.contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--sp-8);
}

/* Ghost-white variant for use on dark/navy bg */
.btn--ghost-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, background 0.3s;
}

.btn--ghost-white:hover,
.btn--ghost-white:focus-visible {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}


/* ═══════════════════════════════════════════════════════════
   10. SECTION SHARED UTILITIES  (home-page scoped)
   ═══════════════════════════════════════════════════════════ */
.section-pad {
    padding-block: var(--sp-24);
}

.bg-alt {
    background: var(--color-offwhite);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--sp-14);
}

.section-eyebrow {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: var(--sp-3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: var(--leading-tight);
    margin-bottom: var(--sp-4);
}

.section-sub {
    font-size: var(--text-md);
    color: var(--color-subtle);
    line-height: var(--leading-loose);
    margin: 0;
}

/* Badges */
.badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.badge--enterprise {
    background: rgba(0, 32, 96, 0.08);
    color: var(--color-navy);
    border: 1px solid rgba(0, 32, 96, 0.18);
}

.badge--ai {
    background: rgba(0, 176, 240, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 176, 240, 0.28);
}


/* ═══════════════════════════════════════════════════════════
   11. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet & below (≤ 1023px) ── */
@media (max-width: 1023px) {
    /* Hero */
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__sub       { margin-inline: auto; }
    .hero__actions   { justify-content: center; }
    .hero__trust-row { justify-content: center; }
    .hero__graphic   { display: none; }

    /* Stats */
    .stats-section__grid { grid-template-columns: repeat(3, 1fr); }

    /* Services */
    .services-overview__grid { grid-template-columns: 1fr; }

    /* Why Hasman */
    .why-hasman__inner {
        grid-template-columns: 1fr;
    }
    .why-hasman__left {
        position: static;
        text-align: center;
    }
    .why-hasman__accent-line { margin-inline: auto; }

    /* Solutions */
    .solutions-teaser__grid { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials – 2 per row handled by Swiper breakpoints */
}

/* ── Phablet (≤ 767px) ── */
@media (max-width: 767px) {
    .section-pad { padding-block: var(--sp-16); }

    /* Stats */
    .stats-section__grid { grid-template-columns: repeat(2, 1fr); }

    /* Why Hasman grid */
    .why-hasman__grid { grid-template-columns: 1fr; }

    /* Solutions */
    .solutions-teaser__grid { grid-template-columns: 1fr; }

    /* Testimonials card padding */
    .testimonial-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    .testimonial-card__text { font-size: 0.875rem; }

    /* Contact CTA */
    .contact-cta__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-inline: auto;
    }
    .contact-cta__actions .btn,
    .contact-cta__actions .btn--ghost-white {
        text-align: center;
    }

    /* Competencies */
    .competencies-strip__item { font-size: 0.8125rem; }
}

/* ── Mobile (≤ 639px) ── */
@media (max-width: 639px) {
    /* Stats */
    .stats-section__grid { grid-template-columns: 1fr; }

    /* Hero */
    .hero__actions   { flex-direction: column; align-items: center; }
    .hero__trust-row { flex-direction: column; align-items: center; gap: 0.5rem; }

    /* Why Hasman CTA */
    .why-hasman__cta { width: 100%; text-align: center; }

    /* Vision strip */
    .vision-strip { clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%); }
}