:root {
    --page-gutter: 200px;
    --section-gap: 88px;
    --surface: #ffffff;
    --surface-muted: #f4f8fc;
    --surface-strong: #eaf2fb;
    --line: #d8e5f2;
    --line-strong: #b6cbe1;
    --text: #12263a;
    --muted: #5c7187;
    --primary: #1f6feb;
    --primary-deep: #174ea6;
    --primary-soft: rgba(31, 111, 235, 0.12);
    --violet-main: rgba(95, 76, 255, 0.28);
    --violet-soft: rgba(146, 110, 255, 0.22);
    --violet-pink: rgba(193, 119, 255, 0.18);
    --shadow: 0 20px 50px rgba(18, 38, 58, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --font-sans:
        "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: "Georgia", "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(31, 111, 235, 0.16),
            transparent 24%
        ),
        linear-gradient(180deg, #fcfdff 0%, #f6faff 45%, #eef4fb 100%);
}

a {
    color: inherit;
}

.company-page {
    position: relative;
    isolation: isolate;
    width: 100%;
    padding: 32px var(--page-gutter) 72px;
}

.company-page > * {
    position: relative;
    z-index: 1;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    display: block;
    border-radius: 999px;
    filter: blur(88px);
    opacity: 0.95;
    will-change: transform;
}

.ambient-orb-one {
    top: 4vh;
    left: 54vw;
    width: 34vw;
    height: 34vw;
    min-width: 320px;
    min-height: 320px;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.68), transparent 24%),
        radial-gradient(circle at 50% 50%, var(--violet-main), rgba(95, 76, 255, 0.03) 72%);
    animation: ambient-drift-one 28s ease-in-out infinite alternate;
}

.ambient-orb-two {
    top: 38vh;
    left: -8vw;
    width: 28vw;
    height: 28vw;
    min-width: 280px;
    min-height: 280px;
    background:
        radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.48), transparent 20%),
        radial-gradient(circle at 50% 50%, var(--violet-soft), rgba(146, 110, 255, 0.03) 74%);
    animation: ambient-drift-two 34s ease-in-out infinite alternate;
}

.ambient-orb-three {
    top: 68vh;
    left: 62vw;
    width: 24vw;
    height: 24vw;
    min-width: 220px;
    min-height: 220px;
    background:
        radial-gradient(circle at 40% 38%, rgba(255, 255, 255, 0.38), transparent 18%),
        radial-gradient(circle at 50% 50%, var(--violet-pink), rgba(193, 119, 255, 0.02) 76%);
    animation: ambient-drift-three 22s ease-in-out infinite alternate;
}

.hero-block,
.sector-strip,
.section-block,
.contact-section {
    width: 100%;
}

.hero-block,
.section-block,
.contact-section {
    margin-top: var(--section-gap);
}

.hero-block {
    margin-top: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(18, 38, 58, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-logo {
    width: 82px;
    height: auto;
    display: block;
}

.brand-copy strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.brand-copy small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.site-nav a,
.header-cta,
.eyebrow,
.panel-label,
.project-meta span,
.pill,
.tag,
.project-link,
.whatsapp-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-nav a,
.header-cta,
.project-link {
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a {
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary-deep);
    outline: none;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 36px;
    padding-top: 46px;
    align-items: start;
}

.hero-copy {
    display: grid;
    gap: 24px;
}

.eyebrow,
.panel-label,
.project-meta span,
.pill,
.tag,
.project-link,
.whatsapp-text {
    font-size: 0.74rem;
    font-weight: 700;
}

.eyebrow,
.panel-label {
    color: var(--primary);
}

.hero-copy h1,
.section-intro h2,
.card-head h3,
.project-card h3,
.faq-card h3,
.contact-copy h2,
.contact-card h3,
.hero-panel-feature h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.02;
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.hero-desc,
.section-copy,
.hero-panel p,
.service-item p,
.process-item p,
.overview-card p,
.project-desc,
.faq-card p,
.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-desc {
    max-width: 64ch;
}

.hero-actions,
.project-pill-row,
.tag-row,
.project-link-row,
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.project-link:hover,
.project-link:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(31, 111, 235, 0.22);
}

.btn-secondary {
    border-color: var(--line-strong);
    background: transparent;
    color: var(--primary-deep);
}

.btn-phone {
    border-color: rgba(22, 163, 74, 0.28);
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    box-shadow: var(--shadow);
}

.hero-side {
    display: grid;
    gap: 16px;
}

.hero-panel,
.content-card,
.fit-card,
.overview-card,
.project-card,
.faq-card,
.contact-card,
.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 24px;
}

.hero-panel-feature {
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(31, 111, 235, 0.12), transparent 60%),
        var(--surface);
}

.hero-panel-feature h2 {
    margin-top: 12px;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    padding: 20px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1;
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-panel-contact {
    display: grid;
    gap: 16px;
}

.sector-strip {
    margin-top: 28px;
    overflow: hidden;
}

.sector-track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 4px 0;
    animation: strip-scroll 32s linear infinite;
}

.sector-track span,
.chip-group span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    white-space: nowrap;
}

.section-intro {
    display: grid;
    /* grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); */
    gap: 32px;
    align-items: end;
    margin-bottom: 30px;
}

.section-intro h2,
.contact-copy h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-intro > div {
    display: grid;
    gap: 12px;
}

.section-intro-narrow {
    grid-template-columns: 1fr;
}

.expertise-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.content-card,
.fit-card {
    padding: 28px;
}

.card-head {
    display: grid;
    gap: 10px;
    /* margin-bottom: 20px; */
}

.card-head h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.service-list,
.process-list {
    display: grid;
    gap: 16px;
}

.service-item,
.process-item {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-muted);
}

.service-item h4,
.process-item h4 {
    margin: 0;
    font-size: 1.1rem;
}

.process-item {
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-size: 0.84rem;
    font-weight: 700;
}

.fit-card {
    display: grid;
    gap: 15px;
}

.chip-group-muted span {
    background: var(--surface-strong);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.overview-card {
    padding: 24px;
}

.overview-card strong {
    display: block;
    margin: 12px 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.project-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary-soft);
    font-size: 1.8rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--muted);
}

.project-card h3 {
    font-size: 1.45rem;
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.pill-primary,
.tag-primary {
    border-color: rgba(31, 111, 235, 0.22);
    background: var(--primary-soft);
    color: var(--primary-deep);
}

.project-link-row {
    margin-top: auto;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    gap: 10px;
    border: 1px solid rgba(22, 163, 74, 0.24);
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.14);
    color: #166534;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.16);
}

.project-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.18);
}

.project-link-icon svg {
    width: 14px;
    height: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.faq-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.faq-card h3 {
    font-size: 1.3rem;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.contact-copy {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.contact-detail-list {
    display: grid;
    gap: 16px;
}

.phone-link,
.whatsapp-link {
    color: #166534;
    font-weight: 700;
    text-decoration: none;
}

.phone-link:hover,
.phone-link:focus-visible,
.whatsapp-link:hover,
.whatsapp-link:focus-visible {
    color: #15803d;
    outline: none;
}

.site-footer {
    margin-top: var(--section-gap);
    padding-top: 32px;
    border-top: 1px solid rgba(18, 38, 58, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(180px, 1fr));
    gap: 24px;
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.footer-logo {
    width: 72px;
    height: auto;
    display: block;
}

.footer-brand h2,
.footer-column h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.footer-brand p,
.footer-column li,
.footer-bottom p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    display: grid;
    gap: 4px;
}

.footer-column li span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.footer-column a {
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--primary-deep);
    outline: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid rgba(18, 38, 58, 0.08);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 12px;
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 999px;
    background: rgba(22, 101, 52, 0.96);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(22, 101, 52, 0.24);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #22c55e;
    font-size: 0.9rem;
    font-weight: 700;
}

@keyframes strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

@keyframes ambient-drift-one {
    0% {
        transform: translate3d(-6vw, -4vh, 0) scale(1);
    }

    35% {
        transform: translate3d(3vw, 6vh, 0) scale(1.08);
    }

    65% {
        transform: translate3d(-10vw, 14vh, 0) scale(0.94);
    }

    100% {
        transform: translate3d(7vw, -2vh, 0) scale(1.04);
    }
}

@keyframes ambient-drift-two {
    0% {
        transform: translate3d(-2vw, 0, 0) scale(1);
    }

    30% {
        transform: translate3d(12vw, -10vh, 0) scale(0.9);
    }

    68% {
        transform: translate3d(18vw, 12vh, 0) scale(1.06);
    }

    100% {
        transform: translate3d(3vw, 18vh, 0) scale(0.96);
    }
}

@keyframes ambient-drift-three {
    0% {
        transform: translate3d(0, 0, 0) scale(0.96);
    }

    42% {
        transform: translate3d(-8vw, -12vh, 0) scale(1.08);
    }

    75% {
        transform: translate3d(5vw, -4vh, 0) scale(0.92);
    }

    100% {
        transform: translate3d(-4vw, 10vh, 0) scale(1.02);
    }
}

@media (max-width: 1320px) {
    :root {
        --page-gutter: 72px;
        --section-gap: 72px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    :root {
        --page-gutter: 48px;
        --section-gap: 60px;
    }

    .site-header,
    .hero-grid,
    .section-intro,
    .expertise-layout,
    .contact-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .header-cta {
        width: fit-content;
    }

    .hero-grid,
    .contact-section {
        gap: 24px;
    }

    .hero-stats,
    .overview-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    :root {
        --page-gutter: 20px;
        --section-gap: 48px;
    }

    .company-page {
        padding-top: 20px;
        padding-bottom: 56px;
    }

    .site-nav {
        gap: 12px;
    }

    .hero-copy h1,
    .section-intro h2,
    .contact-copy h2 {
        max-width: none;
    }

    .hero-stats,
    .overview-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .project-head {
        grid-template-columns: 1fr;
    }

    .content-card,
    .fit-card,
    .overview-card,
    .project-card,
    .faq-card,
    .contact-card,
    .hero-panel,
    .stat-card {
        padding: 20px;
    }

    .footer-brand {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .ambient-orb {
        filter: blur(68px);
        opacity: 0.72;
    }

    .ambient-orb-one {
        width: 72vw;
        height: 72vw;
        top: 6vh;
        left: 38vw;
    }

    .ambient-orb-two {
        width: 62vw;
        height: 62vw;
        top: 42vh;
        left: -16vw;
    }

    .ambient-orb-three {
        width: 52vw;
        height: 52vw;
        top: 74vh;
        left: 52vw;
    }
}

@media (max-width: 520px) {
    .brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-cta,
    .btn {
        width: 100%;
    }

}
