@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --bg: #07111f;
    --bg-soft: #0d1a2d;
    --panel: rgba(10, 18, 31, 0.82);
    --panel-strong: #0f2038;
    --line: rgba(145, 170, 210, 0.18);
    --text: #edf4ff;
    --muted: #9bb0cb;
    --accent: #4fd1c5;
    --accent-strong: #3b82f6;
    --accent-warm: #fb7185;
    --shadow: 0 24px 60px rgba(3, 10, 23, 0.45);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 209, 197, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.24), transparent 28%),
        linear-gradient(180deg, #06101c 0%, #0a1423 42%, #08111d 100%);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    overflow: clip;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(760px, 100%);
}

.section {
    padding: 4.5rem 0;
}

.section-tight {
    padding-top: 1rem;
    padding-bottom: 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(15, 26, 45, 0.58), rgba(7, 17, 31, 0.2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(6, 16, 28, 0.7);
    border-bottom: 1px solid rgba(155, 176, 203, 0.08);
}

.header-inner,
.site-nav,
.hero-actions,
.hero-pills,
.panel-heading,
.service-head,
.contact-list,
.footer-bottom {
    display: flex;
    align-items: center;
}

.header-inner {
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong), var(--accent-warm));
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.45);
}

.site-nav {
    gap: 1rem;
}

.nav-link,
.lang-switch {
    color: var(--muted);
    font-weight: 600;
}

.nav-link.is-active,
.nav-link:hover,
.lang-switch:hover {
    color: var(--text);
}

.button,
.button-secondary,
.button-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #04111b;
    box-shadow: 0 12px 30px rgba(79, 209, 197, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid var(--line);
}

.button-sm {
    padding: 0.8rem 1.2rem;
}

.button:hover,
.button-secondary:hover {
    transform: translateY(-2px);
}

.hero-section {
    padding-top: 6rem;
}

.hero-grid,
.card-grid,
.footer-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.about-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-grid h1,
.page-hero h1 {
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}

.hero-copy {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.breadcrumb-trail,
.jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.breadcrumb-trail {
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.breadcrumb-trail a:hover {
    color: var(--text);
}

.hero-actions,
.hero-pills,
.contact-list {
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-actions {
    margin-bottom: 0.5rem;
}

.hero-pills {
    align-items: flex-start;
}

.hero-pills span,
.icon-chip,
.stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.hero-pills span {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    color: var(--muted);
    margin-right: 0.2rem;
    margin-bottom: 0.35rem;
}

.hero-card,
.feature-card,
.testimonial-card,
.content-card,
.stat-card,
.service-detail,
.cta-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.content-card,
.service-detail,
.cta-panel {
    padding: 1.5rem;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    min-height: 420px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto auto -40px -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.25), transparent 70%);
}

.mock-dashboard {
    min-height: 420px;
    background: linear-gradient(160deg, rgba(18, 34, 59, 0.96), rgba(9, 18, 31, 0.88));
    border-radius: 20px;
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
}

.mock-bar,
.mock-panels div {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(155, 176, 203, 0.16);
    border-radius: 18px;
}

.mock-bar {
    height: 70px;
}

.mock-row,
.mock-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mock-stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.mock-stat strong,
.stat-card strong {
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-size: 2rem;
    display: block;
}

.mock-stat span,
.stat-card span,
.feature-card p,
.testimonial-card span,
.service-head p,
.rich-copy,
.contact-list span {
    color: var(--muted);
}

.mock-panels div {
    min-height: 160px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.service-detail h2,
.cta-panel h2 {
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 0.75rem;
}

.section-heading p,
.cta-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.process-grid,
.resource-grid {
    align-items: stretch;
}

.card-grid,
.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.testimonial-card {
    padding: 1.5rem;
}

.testimonial-card {
    min-width: 320px;
    max-width: 420px;
    scroll-snap-align: start;
}

.feature-card h3,
.testimonial-card strong,
.contact-list a,
.contact-list p {
    margin: 0 0 0.75rem;
}

.feature-card a {
    color: var(--accent);
    font-weight: 700;
}

.icon-chip {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 800;
}

.testimonial-grid,
.service-stack {
    display: grid;
    gap: 1.5rem;
}

.testimonial-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: rgba(155, 176, 203, 0.35);
    border-radius: 999px;
}

.testimonial-grid:active {
    cursor: grabbing;
}

.testimonial-grid {
    cursor: grab;
}

.stars {
    width: fit-content;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    color: #ffd166;
    margin-bottom: 1rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.page-hero {
    padding-top: 5rem;
    text-align: center;
}

.service-stack {
    grid-template-columns: 1fr;
}

.jump-links {
    justify-content: center;
}

.jump-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-weight: 700;
}

.jump-links a:hover {
    color: var(--text);
    border-color: rgba(79, 209, 197, 0.35);
}

.service-head {
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-head .icon-chip {
    margin: 0;
}

.service-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.service-body p,
.rich-copy {
    line-height: 1.8;
}

.service-image {
    border-radius: 18px;
    min-height: 240px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.stats-panel {
    display: grid;
    gap: 1rem;
}

.stat-card {
    padding: 1.3rem;
}

.contact-list {
    margin-top: 1.5rem;
}

.contact-list > div {
    min-width: 200px;
}

.contact-form,
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--line);
}

.footer-grid {
    align-items: start;
}

.footer-grid h3 {
    margin-top: 0;
}

.footer-grid p,
.footer-grid a,
.footer-bottom p {
    color: var(--muted);
}

.footer-bottom {
    justify-content: space-between;
    border-top: 1px solid var(--line);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
}

.industry-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.industry-cloud span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-weight: 700;
}

.faq-grid {
    align-items: stretch;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 30;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #4fd1c5);
    color: #042010;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(37, 211, 102, 0.28);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.alert {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
}

.alert-success {
    background: rgba(34, 197, 94, 0.16);
}

.alert-error {
    background: rgba(251, 113, 133, 0.16);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-header {
        position: relative;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .service-body,
    .card-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 3.5rem;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        min-height: 320px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        background: rgba(6, 16, 28, 0.98);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: 70vh;
        overflow: auto;
    }

    .site-nav.is-open,
    .nav-toggle {
        display: block;
    }

    .button-sm {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero-section {
        padding-top: 4.5rem;
    }

    .jump-links {
        justify-content: flex-start;
    }

    .container {
        width: min(100% - 1.25rem, 1120px);
    }
}
