:root {
    --font-sans: 'Inter', 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --hash-primary: #05848b;
    --hash-primary-deep: #046a70;
    --hash-primary-ink: #033c40;
    --hash-primary-soft: #dff5f4;
    --hash-primary-glow: rgba(5, 132, 139, 0.22);
    --hash-ink: #102224;
    --hash-ink-soft: #305559;
    --hash-slate: #5b7275;
    --hash-border: #d8e8e8;
    --hash-surface: #f4fbfb;
    --hash-surface-strong: #ebf7f7;
    --hash-white: #ffffff;
    --hash-shadow: 0 24px 70px rgba(8, 36, 39, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hash-ink);
    font-family: var(--font-sans);
    background: var(--hash-white);
}

a {
    color: inherit;
}

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

@keyframes hash-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hash-soft-scale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hash-cta-pulse {
    0%,
    100% {
        box-shadow: 0 18px 44px rgba(5, 132, 139, 0.2);
    }

    50% {
        box-shadow: 0 22px 56px rgba(5, 132, 139, 0.34);
    }
}

@keyframes hash-hero-drift {
    from {
        background-position: 48% 50%;
    }

    to {
        background-position: 54% 46%;
    }
}

@keyframes hash-glow-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -14px, 0) scale(1.06);
    }
}

@keyframes hash-light-sweep {
    from {
        transform: translateX(-130%) skewX(-18deg);
    }

    to {
        transform: translateX(160%) skewX(-18deg);
    }
}

@keyframes hash-dot-pulse {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

.hash-page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(5, 132, 139, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
}

.hash-animate-ready .hash-reveal {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
    transition:
        opacity 0.78s ease,
        transform 0.78s ease,
        filter 0.78s ease;
    transition-delay: var(--hash-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.hash-animate-ready .hash-reveal--scale {
    transform: translateY(20px) scale(0.96);
}

.hash-animate-ready .hash-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hash-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(216, 232, 232, 0.72);
}

.site-topbar {
    position: relative;
    overflow: hidden;
    color: rgba(235, 251, 251, 0.82);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, #06282b 0%, #074b50 100%);
    background-size: 64px 64px, auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -20%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: hash-light-sweep 7s ease-in-out infinite;
    pointer-events: none;
}

.site-topbar__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 38px;
    font-size: 0.84rem;
    font-weight: 600;
}

.site-topbar__inner span {
    color: rgba(235, 251, 251, 0.68);
}

.site-topbar__inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hash-white);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.site-topbar__inner a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #45f0e5;
    box-shadow: 0 0 0 6px rgba(69, 240, 229, 0.12);
    animation: hash-dot-pulse 2.4s ease-in-out infinite;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 84px;
    padding: 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__image {
    width: auto;
    height: 44px;
    object-fit: contain;
}

.site-logo__image--footer {
    height: 52px;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(5, 132, 139, 0.06);
    border: 1px solid rgba(5, 132, 139, 0.08);
}

.site-nav a {
    position: relative;
    overflow: hidden;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--hash-ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 6px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--hash-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.site-nav a:hover {
    color: var(--hash-primary-ink);
    background: rgba(5, 132, 139, 0.1);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.hash-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.hash-btn::before {
    content: "";
    position: absolute;
    inset: -30% auto -30% -45%;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
}

.hash-btn:hover {
    transform: translateY(-2px);
}

.hash-btn:hover::before {
    animation: hash-light-sweep 0.85s ease;
}

.hash-btn-sm {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.94rem;
}

.hash-btn-primary {
    color: var(--hash-white);
    background: linear-gradient(135deg, var(--hash-primary), #0aa4aa);
    box-shadow: 0 18px 40px rgba(5, 132, 139, 0.2);
}

.hash-btn-primary:hover {
    color: var(--hash-white);
    box-shadow: 0 22px 48px rgba(5, 132, 139, 0.28);
}

.hash-btn-glass {
    color: var(--hash-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hash-btn-glass:hover {
    color: var(--hash-primary-ink);
    background: var(--hash-white);
}

.hash-btn-soft {
    color: var(--hash-primary-ink);
    background: var(--hash-primary-soft);
    border-color: rgba(5, 132, 139, 0.14);
}

.hash-btn-soft:hover {
    color: var(--hash-white);
    background: var(--hash-primary);
}

.hash-btn-outline {
    color: var(--hash-primary-ink);
    background: transparent;
    border-color: rgba(5, 132, 139, 0.2);
}

.hash-btn-outline:hover {
    color: var(--hash-white);
    background: var(--hash-primary);
    border-color: var(--hash-primary);
}

.hash-btn-dark {
    color: var(--hash-white);
    background: #0f2325;
}

.hash-btn-dark:hover {
    color: var(--hash-white);
    background: #0b181a;
}

.hash-hero {
    position: relative;
    overflow: clip;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 24px);
    padding: 96px 0 40px;
    color: var(--hash-white);
    background: url('/images/sections/hero-premium-bg.svg') center/cover no-repeat;
    animation: hash-hero-drift 16s ease-in-out infinite alternate;
}

.hash-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 28, 31, 0.56) 0%, rgba(4, 28, 31, 0.28) 42%, rgba(4, 28, 31, 0.16) 100%),
        linear-gradient(180deg, rgba(3, 20, 22, 0.12) 0%, rgba(3, 20, 22, 0.22) 100%),
        radial-gradient(circle at top right, rgba(44, 224, 210, 0.12), transparent 30%);
    pointer-events: none;
}

.hash-hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    animation: hash-glow-float 9s ease-in-out infinite;
}

.hash-hero__glow--one {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(27, 212, 214, 0.18);
}

.hash-hero__glow--two {
    width: 360px;
    height: 360px;
    left: -100px;
    bottom: -110px;
    background: rgba(5, 132, 139, 0.26);
    animation-delay: -3s;
}

.hash-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 34px;
    align-items: center;
}

.hash-kicker,
.hash-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #93f0ea;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(147, 240, 234, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hash-kicker i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6dffcf;
    box-shadow: 0 0 0 6px rgba(109, 255, 207, 0.12);
    animation: hash-dot-pulse 2.6s ease-in-out infinite;
}

.hash-hero h1 {
    max-width: 620px;
    margin: 16px 0 12px;
    font-size: clamp(1.95rem, 3.5vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-weight: 700;
}

.hash-hero__copy {
    max-width: 520px;
    margin: 0;
    color: rgba(235, 251, 251, 0.86);
    font-size: 0.88rem;
    line-height: 1.58;
}

.hash-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hash-hero__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hash-lead-card {
    position: relative;
    overflow: hidden;
    width: min(100%, 372px);
    padding: 20px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12)),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
}

.hash-lead-card::after,
.hash-value-card::after,
.hash-service-card::after,
.hash-stack-card::after,
.hash-portfolio-card::after,
.hash-package-card::after,
.hash-ecom-card::after,
.hash-deliverable-card::after,
.hash-process-card::after,
.hash-faq-item::after,
.hash-cta-card::after,
.hash-story-points div::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -70%;
    width: 44%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.hash-lead-card:hover::after,
.hash-value-card:hover::after,
.hash-service-card:hover::after,
.hash-stack-card:hover::after,
.hash-portfolio-card:hover::after,
.hash-package-card:hover::after,
.hash-ecom-card:hover::after,
.hash-deliverable-card:hover::after,
.hash-process-card:hover::after,
.hash-faq-item:hover::after,
.hash-cta-card:hover::after,
.hash-story-points div:hover::after {
    opacity: 1;
    animation: hash-light-sweep 0.95s ease;
}

.hash-lead-card__intro h2 {
    margin: 12px 0 4px;
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    line-height: 1.14;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.hash-lead-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.hash-form-alert {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.5;
}

.hash-form-alert--success {
    color: #dffcf7;
    background: rgba(18, 181, 137, 0.16);
    border: 1px solid rgba(139, 244, 218, 0.26);
}

.hash-form-alert--error {
    color: #ffe8e8;
    background: rgba(220, 53, 69, 0.16);
    border: 1px solid rgba(255, 206, 210, 0.24);
}

.hash-lead-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hash-lead-form label {
    display: grid;
    gap: 8px;
}

.hash-lead-form span {
    color: rgba(235, 251, 251, 0.88);
    font-size: 0.78rem;
    font-weight: 600;
}

.hash-lead-form small {
    color: #ffd6d6;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.hash-lead-form input,
.hash-lead-form select,
.hash-lead-form textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: var(--hash-white);
    font: inherit;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hash-lead-form input::placeholder,
.hash-lead-form textarea::placeholder {
    color: rgba(235, 251, 251, 0.54);
}

.hash-lead-form select {
    color: rgba(235, 251, 251, 0.96);
}

.hash-lead-form option {
    color: var(--hash-ink);
}

.hash-lead-form input:focus,
.hash-lead-form select:focus,
.hash-lead-form textarea:focus {
    border-color: rgba(143, 244, 238, 0.66);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(143, 244, 238, 0.1);
}

.hash-lead-form textarea {
    min-height: 82px;
    resize: vertical;
}

.hash-panel-chip {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--hash-primary-ink);
    background: var(--hash-primary-soft);
    font-size: 0.77rem;
    font-weight: 800;
}

.hash-section {
    padding: 96px 0;
}

.hash-section--soft {
    background: linear-gradient(180deg, #ffffff 0%, var(--hash-surface) 100%);
}

.hash-section--packages,
.hash-section--faq {
    background: var(--hash-surface);
}

.hash-section--cta {
    padding-top: 40px;
}

.hash-section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.hash-section-head h2,
.hash-cta-card h2 {
    margin: 16px 0 0;
    color: var(--hash-ink);
    font-size: clamp(1.9rem, 3.3vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.hash-section-head p,
.hash-cta-card p {
    margin: 16px auto 0;
    color: var(--hash-slate);
    font-size: 0.92rem;
    line-height: 1.72;
}

.hash-section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: end;
    text-align: left;
}

.hash-section-head--split p {
    margin: 0;
}

.hash-value-grid,
.hash-deliverables-grid,
.hash-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hash-value-card,
.hash-service-card,
.hash-deliverable-card,
.hash-faq-item {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 28px;
    background: var(--hash-white);
    border: 1px solid var(--hash-border);
    box-shadow: var(--hash-shadow);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.hash-value-card:hover,
.hash-deliverable-card:hover,
.hash-faq-item:hover,
.hash-story-points div:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 132, 139, 0.16);
    box-shadow: 0 30px 82px rgba(8, 36, 39, 0.1);
}

.hash-value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--hash-white);
    background: linear-gradient(135deg, var(--hash-primary), #0aa4aa);
    font-weight: 800;
}

.hash-value-card h3,
.hash-service-card h3,
.hash-deliverable-card h3,
.hash-faq-item h3 {
    margin: 0 0 10px;
    color: var(--hash-ink);
    font-size: 1.14rem;
    font-weight: 650;
}

.hash-value-card p,
.hash-service-card p,
.hash-deliverable-card p,
.hash-faq-item p {
    margin: 0;
    color: var(--hash-slate);
    line-height: 1.68;
    font-size: 0.9rem;
}

.hash-section--services {
    background: var(--hash-surface);
}

.hash-section--portfolio {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
}

.hash-section--stack {
    color: var(--hash-white);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #08292c 0%, #0b3b3f 100%);
    background-size: 72px 72px, auto;
}

.hash-stack-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}

.hash-stack-intro {
    position: relative;
}

.hash-stack-intro .hash-section-tag {
    color: #a9f7f2;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(169, 247, 242, 0.18);
}

.hash-stack-intro h2 {
    margin: 18px 0 0;
    color: var(--hash-white);
    font-size: 2.45rem;
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 700;
}

.hash-stack-intro p {
    margin: 16px 0 0;
    color: rgba(235, 251, 251, 0.78);
    font-size: 0.94rem;
    line-height: 1.76;
}

.hash-stack-summary {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.hash-stack-summary div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hash-stack-summary strong {
    color: #a9f7f2;
    font-size: 0.86rem;
    font-weight: 750;
    text-transform: uppercase;
}

.hash-stack-summary span {
    color: rgba(235, 251, 251, 0.76);
    font-size: 0.92rem;
    line-height: 1.5;
}

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

.hash-stack-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 154px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(2, 19, 20, 0.18);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.hash-stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 74px rgba(2, 19, 20, 0.25);
}

.hash-stack-card:last-child {
    grid-column: 1 / -1;
}

.hash-stack-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--hash-white);
    background: linear-gradient(135deg, var(--hash-primary), #11b9bd);
    font-size: 0.86rem;
    font-weight: 800;
}

.hash-stack-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 9px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--hash-primary);
    background: rgba(5, 132, 139, 0.08);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hash-stack-card h3 {
    margin: 0 0 10px;
    color: var(--hash-ink);
    font-size: 1.18rem;
    font-weight: 650;
}

.hash-stack-card p {
    margin: 0;
    color: var(--hash-slate);
    font-size: 0.9rem;
    line-height: 1.7;
}

.hash-service-grid {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hash-service-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.hash-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 84px rgba(8, 36, 39, 0.1);
}

.hash-service-card__label {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--hash-primary);
    background: rgba(5, 132, 139, 0.08);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hash-service-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.hash-service-card p {
    font-size: 0.9rem;
}

.hash-service-card ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: auto 0 0;
    list-style: none;
}

.hash-service-card li {
    position: relative;
    padding-left: 24px;
    color: var(--hash-ink-soft);
    line-height: 1.65;
}

.hash-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hash-primary), #15cbc7);
}

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

.hash-portfolio-card {
    overflow: hidden;
    border-radius: 30px;
    background: var(--hash-white);
    border: 1px solid var(--hash-border);
    box-shadow: var(--hash-shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hash-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 84px rgba(8, 36, 39, 0.12);
}

.hash-portfolio-card__visual {
    overflow: hidden;
    background: linear-gradient(180deg, #eef8f8 0%, #ffffff 100%);
}

.hash-portfolio-card__visual img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.hash-portfolio-card:hover .hash-portfolio-card__visual img {
    transform: scale(1.02);
}

.hash-portfolio-card__content {
    padding: 22px;
}

.hash-portfolio-card__content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--hash-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hash-portfolio-card__content h3 {
    margin: 0 0 6px;
    color: var(--hash-ink);
    font-size: 1.15rem;
    font-weight: 650;
}

.hash-portfolio-card__domain {
    display: block;
    margin-bottom: 10px;
    color: rgba(7, 47, 50, 0.62);
    font-size: 0.82rem;
    font-weight: 600;
}

.hash-portfolio-card__content p {
    margin: 0 0 16px;
    color: var(--hash-slate);
    font-size: 0.9rem;
    line-height: 1.68;
}

.hash-portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hash-primary);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.hash-portfolio-card__link::after {
    content: '\2197';
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.hash-portfolio-card__link:hover::after {
    transform: translate(2px, -2px);
}

.hash-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
}

.hash-story-grid--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hash-story-visual {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--hash-border);
    box-shadow: var(--hash-shadow);
    background: var(--hash-white);
}

.hash-story-visual img {
    width: 100%;
    height: auto;
    transition:
        transform 0.75s ease,
        filter 0.75s ease;
}

.hash-story-visual:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.02);
}

.hash-story-content h2 {
    margin: 16px 0 0;
    color: var(--hash-ink);
    font-size: clamp(1.8rem, 3.1vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.hash-story-content p {
    margin: 18px 0 0;
    color: var(--hash-slate);
    line-height: 1.74;
    font-size: 0.92rem;
}

.hash-story-points {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.hash-story-points div {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    background: var(--hash-white);
    border: 1px solid var(--hash-border);
    box-shadow: var(--hash-shadow);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.hash-story-points strong,
.hash-story-points span {
    display: block;
}

.hash-story-points strong {
    margin-bottom: 6px;
    color: var(--hash-ink);
}

.hash-story-points span {
    color: var(--hash-slate);
    line-height: 1.75;
}

.hash-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.hash-package-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    border-radius: 32px;
    background: var(--hash-white);
    border: 1px solid var(--hash-border);
    box-shadow: var(--hash-shadow);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.hash-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 82px rgba(8, 36, 39, 0.12);
}

.hash-package-card--featured {
    border-color: rgba(5, 132, 139, 0.24);
    box-shadow: 0 32px 82px rgba(5, 132, 139, 0.16);
}

.hash-package-card--featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    border-radius: 32px 32px 0 0;
    background: linear-gradient(90deg, var(--hash-primary), #10b8b8);
}

.hash-popular-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--hash-white);
    background: var(--hash-primary);
    font-size: 0.76rem;
    font-weight: 800;
}

.hash-plan-label {
    display: inline-flex;
    margin-bottom: 15px;
    color: var(--hash-primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hash-package-top h3 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    color: var(--hash-ink);
    letter-spacing: -0.03em;
}

.hash-package-top p {
    min-height: 84px;
    margin: 0;
    color: var(--hash-slate);
    line-height: 1.75;
}

.hash-price-box {
    padding: 24px 0;
    margin: 20px 0;
    border-top: 1px solid var(--hash-border);
    border-bottom: 1px solid var(--hash-border);
}

.hash-price-box strong,
.hash-price-box span {
    display: block;
}

.hash-price-box strong {
    color: var(--hash-ink);
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hash-price-box span {
    margin-top: 8px;
    color: var(--hash-slate);
    font-size: 0.83rem;
}

.hash-package-card ul {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.hash-package-card li {
    position: relative;
    padding-left: 28px;
    color: var(--hash-ink-soft);
    line-height: 1.6;
}

.hash-package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--hash-primary);
    font-weight: 900;
}

.hash-package-card .hash-btn {
    margin-top: auto;
}

.hash-ecom-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    margin-top: 28px;
    padding: 38px;
    border-radius: 34px;
    color: var(--hash-white);
    background:
        radial-gradient(circle at top right, rgba(69, 224, 227, 0.18), transparent 35%),
        linear-gradient(135deg, #0b2a2d, #104448 56%, #0d666b);
    box-shadow: 0 34px 90px rgba(8, 36, 39, 0.2);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.hash-ecom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 42px 104px rgba(8, 36, 39, 0.24);
}

.hash-ecom-card h3 {
    margin: 16px 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.hash-ecom-card p {
    max-width: 680px;
    margin: 0;
    color: rgba(235, 251, 251, 0.82);
    line-height: 1.85;
}

.hash-ecom-price {
    min-width: 220px;
    text-align: right;
}

.hash-ecom-price strong {
    display: block;
    margin-bottom: 18px;
    font-size: 2.7rem;
}

.hash-section--dark {
    background: var(--hash-white);
}

.hash-process-box {
    overflow: hidden;
    padding: 62px;
    border-radius: 40px;
    color: var(--hash-white);
    background:
        radial-gradient(circle at top left, rgba(49, 240, 230, 0.18), transparent 32%),
        linear-gradient(135deg, #062a2d 0%, #0a383c 56%, #0d5a60 100%);
    box-shadow: 0 36px 96px rgba(8, 36, 39, 0.18);
}

.hash-section-head--light h2,
.hash-section-head--light p {
    color: var(--hash-white);
}

.hash-section-head--light p {
    color: rgba(235, 251, 251, 0.76);
}

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

.hash-process-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        transform 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease;
}

.hash-process-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(140, 244, 238, 0.24);
}

.hash-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--hash-white);
    background: linear-gradient(135deg, #07a4ab, #15cbc7);
    font-weight: 800;
}

.hash-process-card h3 {
    margin: 0 0 10px;
    color: var(--hash-white);
}

.hash-process-card p {
    margin: 0;
    color: rgba(235, 251, 251, 0.76);
    line-height: 1.75;
}

.hash-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.hash-faq-item {
    position: relative;
}

.hash-faq-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 28px 0 0 28px;
    background: linear-gradient(180deg, var(--hash-primary), #12b5bb);
}

.hash-cta-card {
    position: relative;
    overflow: hidden;
    padding: 74px 36px;
    border-radius: 40px;
    text-align: center;
    color: var(--hash-white);
    background:
        radial-gradient(circle at top left, rgba(49, 240, 230, 0.2), transparent 36%),
        linear-gradient(135deg, #08292b, #0d3f43 52%, #0f656a);
    box-shadow: 0 34px 92px rgba(8, 36, 39, 0.2);
}

.hash-cta-card h2 {
    max-width: 820px;
    margin-inline: auto;
    color: var(--hash-white);
}

.hash-cta-card p {
    max-width: 660px;
    color: rgba(235, 251, 251, 0.82);
}

.hash-thankyou {
    display: grid;
    align-items: center;
    min-height: calc(100svh - 122px);
    padding: 86px 0;
    color: var(--hash-white);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, #06282b 0%, #0b4044 52%, #05848b 100%);
    background-size: 72px 72px, auto;
}

.hash-thankyou__card {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
    padding: 54px;
    border-radius: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 38px 100px rgba(2, 24, 26, 0.26);
    backdrop-filter: blur(18px);
}

.hash-thankyou__card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 244, 238, 0.2), transparent 68%);
    transform: translate(-50%, -48%);
    pointer-events: none;
}

.hash-thankyou__card > * {
    position: relative;
    z-index: 1;
}

.hash-thankyou__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--hash-primary-ink);
    background: #8cf4ee;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(140, 244, 238, 0.26);
}

.hash-thankyou h1 {
    margin: 20px 0 0;
    color: var(--hash-white);
    font-size: 2.8rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.hash-thankyou p {
    max-width: 560px;
    margin: 18px auto 0;
    color: rgba(235, 251, 251, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.hash-thankyou__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.hash-thankyou__actions .hash-btn-outline {
    color: var(--hash-white);
    border-color: rgba(255, 255, 255, 0.26);
}

.hash-thankyou__actions .hash-btn-outline:hover {
    color: var(--hash-primary-ink);
    background: var(--hash-white);
    border-color: var(--hash-white);
}

.hash-thankyou__note {
    display: grid;
    gap: 6px;
    max-width: 420px;
    margin: 30px auto 0;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hash-thankyou__note strong {
    color: var(--hash-white);
}

.hash-thankyou__note span {
    color: rgba(235, 251, 251, 0.72);
    line-height: 1.5;
}

.site-footer {
    padding: 44px 0 26px;
    margin-top: 88px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(235, 251, 251, 0.82);
    background:
        radial-gradient(circle at top left, rgba(16, 201, 191, 0.12), transparent 28%),
        linear-gradient(135deg, #071f21 0%, #0b3033 48%, #0d5357 100%);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
    gap: 28px;
}

.site-footer__brand p,
.site-footer__column a,
.site-footer__column span,
.site-footer__bottom p {
    color: rgba(235, 251, 251, 0.72);
    line-height: 1.8;
}

.site-footer__brand p {
    max-width: 420px;
    margin: 18px 0 0;
}

.site-footer__column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer__column h3 {
    margin: 6px 0 4px;
    font-size: 1rem;
    color: var(--hash-white);
}

.site-footer__column a {
    text-decoration: none;
}

.site-footer__column a:hover {
    color: #8cf4ee;
}

.site-footer__phones {
    display: grid;
    gap: 10px;
    margin: 4px 0;
}

.site-footer__phones a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--hash-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__phones a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8cf4ee;
    box-shadow: 0 0 0 5px rgba(140, 244, 238, 0.1);
}

.site-footer__phones a:hover {
    color: var(--hash-white);
    background: rgba(5, 132, 139, 0.28);
    border-color: rgba(140, 244, 238, 0.26);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom a {
    color: var(--hash-white);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.hash-mobile-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: flex;
    animation: hash-fade-up 0.55s ease 0.2s both;
}

.hash-mobile-cta__item {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    color: var(--hash-white);
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.hash-mobile-cta__item::before {
    content: "";
    position: absolute;
    inset: -35% auto -35% -55%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-18deg);
    animation: hash-light-sweep 4.8s ease-in-out infinite;
    pointer-events: none;
}

.hash-mobile-cta__item span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--hash-white);
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.76rem;
    font-weight: 850;
}

.hash-mobile-cta__item {
    isolation: isolate;
}

.hash-mobile-cta__item--whatsapp {
    background: linear-gradient(135deg, #0c8f67 0%, #17ba82 100%);
    box-shadow: 0 18px 44px rgba(12, 143, 103, 0.22);
}

.hash-mobile-cta__item--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(12, 143, 103, 0.3);
}

.hash-mobile-cta__item--call {
    display: none;
    background: linear-gradient(135deg, var(--hash-primary-deep) 0%, var(--hash-primary) 100%);
    animation: hash-cta-pulse 2.8s ease-in-out infinite;
}

.hash-mobile-cta__item:active {
    transform: translateY(1px) scale(0.99);
}

@media (max-width: 1100px) {
    .site-header__inner,
    .site-footer__grid,
    .hash-hero__grid,
    .hash-section-head--split,
    .hash-stack-layout,
    .hash-story-grid,
    .hash-story-grid--reverse,
    .hash-ecom-card {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        display: grid;
        justify-items: start;
        padding: 14px 0 18px;
    }

    .site-header__cta {
        width: 100%;
    }

    .site-topbar__inner {
        display: grid;
        justify-items: start;
        padding: 8px 0;
    }

    .hash-package-grid,
    .hash-value-grid,
    .hash-deliverables-grid,
    .hash-service-grid,
    .hash-stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hash-stack-layout {
        gap: 30px;
    }

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

    .hash-ecom-price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .site-topbar__inner {
        justify-items: center;
        min-height: 36px;
        padding: 0;
    }

    .site-topbar__inner span {
        display: none;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .site-logo__image {
        height: 38px;
    }

    .site-logo__image--footer {
        height: 44px;
    }

    .hash-section,
    .hash-hero {
        padding: 72px 0;
    }

    .hash-hero {
        min-height: auto;
    }

    .hash-section--cta {
        padding-top: 24px;
    }

    .hash-hero__actions,
    .hash-package-grid,
    .hash-value-grid,
    .hash-deliverables-grid,
    .hash-service-grid,
    .hash-stack-grid,
    .hash-portfolio-grid,
    .hash-process-grid,
    .hash-faq-grid {
        grid-template-columns: 1fr;
    }

    .hash-hero__actions {
        display: grid;
    }

    .hash-btn {
        width: 100%;
    }

    .hash-hero__visual {
        min-height: auto;
    }

    .hash-process-box,
    .hash-cta-card,
    .hash-ecom-card,
    .hash-value-card,
    .hash-service-card,
    .hash-stack-card,
    .hash-deliverable-card,
    .hash-package-card,
    .hash-faq-item {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .hash-stack-intro h2 {
        font-size: 2rem;
    }

    .hash-stack-summary div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hash-stack-card {
        grid-template-columns: 50px minmax(0, 1fr);
        min-height: auto;
    }

    .hash-stack-card:last-child {
        grid-column: auto;
    }

    .hash-stack-card__mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 0.78rem;
    }

    .hash-price-box strong,
    .hash-ecom-price strong {
        font-size: 2.25rem;
    }

    .hash-thankyou {
        min-height: auto;
        padding: 66px 0;
    }

    .hash-thankyou__card {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .hash-thankyou h1 {
        font-size: 2.1rem;
    }

    .hash-thankyou__actions {
        display: grid;
    }

    .site-footer__bottom {
        display: grid;
        width: 100%;
    }

    .hash-mobile-cta {
        position: fixed;
        right: 14px;
        bottom: 14px;
        left: 14px;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(216, 232, 232, 0.86);
        box-shadow: 0 24px 70px rgba(8, 36, 39, 0.2);
        backdrop-filter: blur(18px);
        animation: hash-fade-up 0.55s ease 0.2s both;
    }

    .hash-mobile-cta__item {
        display: inline-flex;
        padding: 0;
    }

    .hash-lead-form__grid {
        grid-template-columns: 1fr;
    }

    .site-header__cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
