/* Base Reset & Premium Dynamic Aesthetics */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #3a86ff;
    --accent-color: #ff006e;
    --text-color: #2b2d42;
    --bg-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Clickable/selectable: scope expands (no hand) */
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
select,
.nav__link,
.btn {
    cursor: pointer;
}

main {
    padding-top: 16px;
}

section.section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Stunning Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.15) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

 .hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__copy {
    flex: 1;
}

.hero__copy h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.hero__copy p.lead {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Home Hero: Logo + Centered Content */
.hero__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero__logo-img {
    height: 84px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero--home .hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__copy--centered {
    max-width: 720px;
    margin: 0 auto;
}

.hero__copy--centered .eyebrow {
    margin-bottom: 12px;
}

.hero__copy--centered h1 {
    margin-bottom: 20px;
}

.hero__copy--centered .lead {
    margin-bottom: 32px;
}

.hero__copy--centered .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
}

.hero--home .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    margin-top: 48px;
}

.hero--home .hero__media {
    display: none;
}

/* Service Detail Hero */
.serviceHero {
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(58, 134, 255, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 0, 110, 0.06), transparent 55%);
    position: relative;
    overflow: hidden;
}

.serviceHero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.12), transparent 60%);
    opacity: 0.8;
    z-index: -1;
}

.serviceHero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.serviceHero__copy {
    flex: 1;
}

.serviceHero__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.serviceHero__tagline {
    font-size: 1.1rem;
    max-width: 520px;
}

.serviceHero__media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.serviceHero__card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: translateY(0);
    animation: float 10s ease-in-out infinite alternate;
}

.serviceHero__image {
    width: 100%;
    max-width: 520px;
    height: 320px;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.serviceHero__card:hover .serviceHero__image {
    transform: scale(1.08) translateY(-4px);
}

.serviceHero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 55%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    opacity: 0.8;
}

/* Floating animation for detail hero image */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

@media (max-width: 992px) {
    .serviceHero__inner {
        flex-direction: column;
        text-align: center;
    }

    .serviceHero__media {
        justify-content: center;
    }

    .serviceHero__title {
        font-size: 2rem;
    }
}

 .hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero__stats dt {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.hero__stats dd {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

/* Premium Buttons with Micro-Animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.4);
    border: none;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn--primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 30px rgba(58, 134, 255, 0.6);
}

.btn--primary:hover::after {
    left: 100%;
}

.btn--ghost {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn--ghost:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(13, 27, 42, 0.2);
}

/* Exquisite Glassmorphism Cards */
.card,
.panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card:hover,
.panel:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
}

.card h3,
.panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.card:hover h3,
.panel:hover h3 {
    color: var(--secondary-color);
}

.card p,
.panel p {
    color: #4a5568;
    line-height: 1.6;
}

/* Image Card Overrides */
.card--image {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card--image .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s ease;
}

.card--image .card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card--image h3 {
    margin-bottom: 15px;
}

.card--image:hover .card-img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.card--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
            rgba(58, 134, 255, 0.25),
            transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.card--image:hover::before {
    opacity: 1;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
}

 .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

/* Section Styling */
.section {
    padding: 96px 0;
    position: relative;
}

.section--alt {
    background: #ffffff;
}

.section__head {
    text-align: center;
    margin: 0 auto 56px;
    position: relative;
    max-width: 760px;
}

.section__head h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section__head p.muted {
    font-size: 1.05rem;
    color: #718096;
    max-width: none;
    margin: 0;
    text-align: left;
}

/* Interactive Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.chip {
    background: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.chip:hover {
    transform: translateY(-8px);
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 15px 25px rgba(58, 134, 255, 0.4);
}

/* Forms & Contact Elevate */
.contact {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.form {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.form__row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    width: 100%;
    margin-bottom: 20px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 18px 24px;
    margin-top: 10px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background: #f7fafc;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.15);
}

.asideCard {
    background: var(--primary-color);
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.asideCard h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.asideCard p.muted {
    color: #a0aec0;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.kv {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.kv__k {
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.kv__v,
.kv__v a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.kv__v a:hover {
    color: var(--secondary-color);
}

.hp {
    display: none;
}

/* Contact enhancements */
.contact__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status {
    margin-top: 14px;
    font-weight: 600;
    color: #2d3748;
}

.supportHighlights {
    margin: 28px 0 44px;
}

.supportHighlights .card p.muted {
    margin: 0;
}

.supportHighlights .card h3 {
    margin-bottom: 10px;
}

.contactMap {
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.contactMap iframe {
    display: block;
}

/* Elfsight WhatsApp widget: force bottom-left placement */
#eapps-whatsapp-chat,
.eapps-whatsapp-chat,
.eapps-whatsapp-chat-floating-button,
[class*="eapps-whatsapp-chat"],
[class*="eapps-whatsapp"] {
    right: auto !important;
    left: 18px !important;
}

.elfsight-app-71359b80-0ee8-4e3d-a5c1-7cf632a568f1,
.elfsight-app-71359b80-0ee8-4e3d-a5c1-7cf632a568f1 iframe,
.elfsight-app-b035bfe0-1415-4466-abe0-3f275636a1f4,
.elfsight-app-b035bfe0-1415-4466-abe0-3f275636a1f4 iframe {
    right: auto !important;
    left: 18px !important;
}

@media (max-width: 520px) {
    #eapps-whatsapp-chat,
    .eapps-whatsapp-chat,
    .eapps-whatsapp-chat-floating-button,
    [class*="eapps-whatsapp-chat"],
    [class*="eapps-whatsapp"] {
        left: 12px !important;
    }

    .elfsight-app-71359b80-0ee8-4e3d-a5c1-7cf632a568f1,
    .elfsight-app-71359b80-0ee8-4e3d-a5c1-7cf632a568f1 iframe,
    .elfsight-app-b035bfe0-1415-4466-abe0-3f275636a1f4,
    .elfsight-app-b035bfe0-1415-4466-abe0-3f275636a1f4 iframe {
        left: 12px !important;
    }
}

/* Honeypot */

/* Responsive Design */
@media (max-width: 992px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .form__row {
        flex-direction: column;
        gap: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

p {
    margin-bottom: 24px;
    color: #4a5568;
    text-align: left;
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 8px;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip:focus {
    top: 0;
}

.navToggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.navToggle__bars,
.navToggle__bars::before,
.navToggle__bars::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navToggle__bars::before {
    transform: translateY(-8px);
}

.navToggle__bars::after {
    transform: translateY(5px);
}

.is-open .navToggle__bars {
    background: transparent;
}

.is-open .navToggle__bars::before {
    transform: rotate(45deg);
}

.is-open .navToggle__bars::after {
    transform: rotate(-45deg) translateY(-8px) translateX(6px);
}

/* Shared utilities used across templates */
.muted {
    color: #718096;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 24px 0 0;
}

.list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.list li {
    position: relative;
    padding-left: 28px;
    color: #4a5568;
    line-height: 1.55;
}

.list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 900;
}

/* SAP Solutions page components */
.techGrid {
    align-items: stretch;
}

.techCard {
    padding: 28px;
    display: grid;
    gap: 14px;
    justify-items: start;
}

.techCard__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 12px 24px rgba(58, 134, 255, 0.25);
}

.techCard__title {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.stepCard {
    padding-top: 30px;
}

.stepCard__badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(58, 134, 255, 0.12);
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 12px;
    border: 1px solid rgba(58, 134, 255, 0.25);
}

.benefitCard {
    padding: 28px;
    display: grid;
    gap: 16px;
    align-content: start;
}

.benefitCard__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(58, 134, 255, 0.35), rgba(58, 134, 255, 0.08));
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.faqList {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.faqItem {
    border-radius: 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    padding: 4px 18px;
}

.faqItem[open] {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-hover);
}

.faqItem__q {
    cursor: pointer;
    padding: 18px 6px;
    font-weight: 800;
    color: var(--primary-color);
    list-style: none;
}

.faqItem__q::-webkit-details-marker {
    display: none;
}

.faqItem__q::after {
    content: "+";
    float: right;
    color: var(--secondary-color);
    font-weight: 900;
}

.faqItem[open] .faqItem__q::after {
    content: "–";
}

.faqItem__a {
    padding: 0 6px 12px;
}