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

:root {
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Manrope", Inter, system-ui, sans-serif;
    --background: #0b1220;
    --background-deep: #05070d;
    --foreground: #f8fafc;
    --muted: rgba(248, 250, 252, 0.64);
    --muted-soft: rgba(248, 250, 252, 0.42);
    --primary: #6d5dfb;
    --secondary: #00c2ff;
    --accent: #f7c873;
    --success: #10b981;
    --danger: #ef4444;
    --border: rgba(255, 255, 255, 0.08);
    --gold-border: rgba(247, 200, 115, 0.32);
    --container: 1440px;
    --radius: 24px;
    --header-height: 80px;
}

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

html {
    background: var(--background);
    scroll-behavior: smooth;
}

body.akca-site {
    margin: 0;
    min-height: 100vh;
    color: var(--foreground);
    background:
        radial-gradient(circle at 18% 0%, rgba(109, 93, 251, 0.16), transparent 36rem),
        radial-gradient(circle at 88% 18%, rgba(0, 194, 255, 0.12), transparent 34rem),
        linear-gradient(180deg, var(--background), var(--background-deep) 100%);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: akcaPageIn 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell {
    min-height: 100vh;
    background: #0b1220;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.narrow-content {
    width: min(860px, calc(100% - 48px));
    margin-inline: auto;
}

.icon {
    display: inline-flex;
    width: 1.1em;
    height: 1.1em;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-star svg {
    fill: currentColor;
}

.glass,
.glass-strong,
.glass-input {
    border: 1px solid var(--border);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 60px -20px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(109, 93, 251, 0.06);
}

.glass-strong {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.03));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 32px 80px -24px rgba(0, 0, 0, 0.7);
}

.glass-input {
    background: rgba(255, 255, 255, 0.045);
}

.aurora,
.footer-aurora {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.9;
    animation: akcaAuroraDrift 26s ease-in-out infinite alternate;
    will-change: transform;
}

.aurora--violet {
    top: 5rem;
    left: 18%;
    width: 46rem;
    height: 46rem;
    background: rgba(109, 93, 251, 0.18);
}

.aurora--cyan {
    top: 8rem;
    right: 14%;
    width: 34rem;
    height: 34rem;
    background: rgba(0, 194, 255, 0.14);
    animation-delay: -7s;
}

.aurora--gold {
    bottom: 0;
    left: 40%;
    width: 28rem;
    height: 28rem;
    background: rgba(247, 200, 115, 0.1);
    animation-delay: -13s;
}

.akca-reveal,
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--akca-delay, 0ms),
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--akca-delay, 0ms),
        filter 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--akca-delay, 0ms);
    will-change: opacity, transform;
}

.akca-reveal-up {
    transform: translateY(28px);
}

.akca-reveal-scale {
    transform: translateY(20px) scale(0.985);
}

.akca-reveal.is-visible,
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
}

.akca-hero-sequence .akca-hero-item,
.akca-hero-card {
    opacity: 0;
    transform: translateY(20px);
    animation: akcaHeroIn 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.akca-hero-sequence .akca-hero-item:nth-child(1) {
    animation-delay: 120ms;
}

.akca-hero-sequence .akca-hero-item:nth-child(2) {
    animation-delay: 240ms;
}

.akca-hero-sequence .akca-hero-item:nth-child(3) {
    animation-delay: 360ms;
}

.akca-hero-sequence .akca-hero-item:nth-child(4) {
    animation-delay: 480ms;
}

.akca-hero-card {
    animation-delay: 560ms;
}

@keyframes akcaPageIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes akcaHeroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes akcaAuroraDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

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

    100% {
        transform: translate3d(-12px, 18px, 0) scale(0.985);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(11, 18, 32, 0.74);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    transition:
        background-color 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.akca-scrolled .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: rgba(5, 7, 13, 0.86);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.site-header__inner {
    width: min(var(--container), calc(100% - 48px));
    height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex: 0 0 auto;
}

.brand__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 36px rgba(109, 93, 251, 0.25);
    overflow: hidden;
}

.brand__mark span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 800;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__text {
    color: var(--foreground);
    font-weight: 700;
    letter-spacing: 0;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav__list {
    display: flex;
    align-items: center;
    gap: 1.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link,
.desktop-nav a {
    position: relative;
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.9rem;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.desktop-nav a:hover,
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
    color: var(--foreground);
}

.nav-link.is-active::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.65rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(247, 200, 115, 0.4));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.selector {
    position: relative;
}

.selector__button {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.5rem;
    padding: 0.5rem 0.75rem;
    color: rgba(248, 250, 252, 0.82);
    border: 0;
    background: transparent;
    font-size: 0.88rem;
}

.selector__button:hover {
    color: var(--foreground);
}

.selector__chevron {
    transform: translateY(-1px);
    opacity: 0.75;
}

.selector__menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 8rem;
    padding: 0.4rem;
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    background: rgba(11, 18, 32, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.selector__menu--wide {
    min-width: 12rem;
}

.selector:hover .selector__menu,
.selector:focus-within .selector__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.selector__menu button {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    color: rgba(248, 250, 252, 0.78);
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0.65rem;
    font-size: 0.88rem;
}

.selector__menu button:hover,
.selector__menu button.is-selected {
    color: var(--accent);
    background: rgba(109, 93, 251, 0.14);
}

.mobile-menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    border: 0;
    background: transparent;
}

.mobile-menu-toggle__close {
    display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__open {
    display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__close {
    display: inline-flex;
}

.mobile-panel {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.85rem 1.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-align: center;
    background-size: 160% 160%;
    transition:
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 220ms ease,
        background-position 360ms ease,
        background 220ms ease,
        border-color 220ms ease,
        color 220ms ease;
}

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

.button .icon {
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover .icon {
    transform: translateX(4px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 20px 42px -20px rgba(109, 93, 251, 0.8);
}

.button--primary:hover {
    background-position: 100% 50%;
    box-shadow: 0 24px 52px -18px rgba(109, 93, 251, 0.95);
}

.button--ghost {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
}

.button--ghost:hover {
    background: rgba(109, 93, 251, 0.14);
}

.button--outline {
    color: var(--accent);
    border-color: rgba(247, 200, 115, 0.32);
    background: transparent;
}

.button--outline:hover {
    background: rgba(247, 200, 115, 0.1);
    border-color: rgba(247, 200, 115, 0.62);
    box-shadow: 0 18px 44px -28px rgba(247, 200, 115, 0.8);
}

.button--compact {
    min-height: 2.75rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

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

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-row--center {
    justify-content: center;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.showcase h2,
.final-cta h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(3.25rem, 7vw, 7rem);
}

.hero h1 span,
.showcase h2 span,
.final-cta h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero__copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 1.5rem 0 2rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-device {
    position: relative;
    border-radius: 2rem;
    padding: 2rem;
    transition:
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 520ms ease,
        border-color 520ms ease;
}

.hero-device:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 200, 115, 0.22);
}

.browser-dots {
    height: 1rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.browser-dots span {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--danger);
}

.browser-dots span:nth-child(2) {
    background: var(--accent);
}

.browser-dots span:nth-child(3) {
    background: var(--success);
}

.device-lines {
    margin-top: 1.7rem;
}

.device-lines span {
    display: block;
    height: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(109, 93, 251, 0.42), transparent);
}

.device-lines span:nth-child(2) {
    width: 72%;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.34), transparent);
}

.device-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.4rem;
}

.device-preview div {
    min-height: 9rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(109, 93, 251, 0.16), rgba(0, 194, 255, 0.05));
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.metrics div {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics strong {
    display: block;
    color: var(--accent);
    font-size: 1.65rem;
    line-height: 1;
}

.metrics span {
    display: block;
    margin-top: 0.4rem;
    color: var(--muted-soft);
    font-size: 0.75rem;
}

.floating-icon {
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    width: 5.5rem;
    height: 5.5rem;
    display: grid;
    place-items: center;
    color: var(--accent);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
    position: relative;
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.section--deep {
    background: var(--background-deep);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-heading--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.section-heading h2,
.showcase h2,
.final-cta h2 {
    color: var(--foreground);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.section-heading p,
.showcase p,
.final-cta p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.work-grid,
.service-grid,
.package-grid,
.care-grid,
.testimonial-grid,
.blog-preview-grid {
    display: grid;
    gap: 1.5rem;
}

.work-grid,
.service-grid,
.blog-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card,
.service-card,
.care-card,
.testimonial,
.post-card,
.price-card,
.package-card,
.process-step,
.mini-feature,
.reason,
.contact-card,
.studio-card,
.contact-form,
.service-row,
.blog-preview__image,
.final-cta {
    border-radius: var(--radius);
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.work-card,
.service-card,
.care-card,
.testimonial,
.post-card {
    padding: 1.6rem;
}

.work-card {
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.work-card:hover,
.service-card:hover,
.service-row:hover,
.package-card:hover,
.care-card:hover,
.price-card:hover,
.process-step:hover,
.testimonial:hover,
.blog-preview:hover .blog-preview__image,
.mini-feature:hover,
.reason:hover,
.contact-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(247, 200, 115, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 70px -34px rgba(109, 93, 251, 0.82),
        0 0 0 1px rgba(247, 200, 115, 0.08);
}

.work-card__visual {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--primary);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(109, 93, 251, 0.16), rgba(0, 194, 255, 0.05));
}

.work-card__visual .icon {
    width: 3.5rem;
    height: 3.5rem;
}

.work-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.work-card h3,
.service-card h3,
.price-card h3,
.care-card h3,
.package-card h2,
.package-card h3,
.post-card h2,
.blog-preview h3 {
    margin: 0;
    color: var(--foreground);
}

.work-card p,
.service-card p,
.price-card p,
.package-card p,
.care-card p,
.post-card p,
.blog-preview p {
    color: var(--muted);
}

.showcase {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 2rem;
    overflow: hidden;
}

.showcase::before,
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(109, 93, 251, 0.12), transparent, rgba(0, 194, 255, 0.1));
}

.showcase > *,
.final-cta > * {
    position: relative;
    z-index: 1;
}

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

.mini-feature {
    min-height: 11rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.4rem;
    border-radius: 1.25rem;
}

.mini-feature .icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.mini-feature span {
    color: var(--muted-soft);
    font-size: 0.85rem;
}

.mini-feature strong {
    color: var(--foreground);
}

.service-card {
    position: relative;
    min-height: 15rem;
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.service-card .icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.4rem;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 0.7rem;
}

.pricing-preview,
.process-grid,
.reasons-grid {
    display: grid;
    gap: 1.5rem;
}

.pricing-preview,
.care-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.package-card {
    position: relative;
    border-radius: var(--radius);
    padding: 2rem;
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.price-card--featured,
.package-card--recommended {
    border-color: var(--gold-border);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2rem;
    padding: 0.3rem 0.8rem;
    color: #111827;
    background: linear-gradient(90deg, var(--accent), rgba(247, 200, 115, 0.8));
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.price-card .badge,
.package-card .badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.price-card strong,
.care-card strong,
.package-card__price {
    display: block;
    margin: 1.5rem 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        color 220ms ease;
}

.package-card__price.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.package-card__price.is-changed {
    color: var(--accent);
    transform: translateY(-2px);
}

.care-card strong {
    color: var(--primary);
    font-size: 2.2rem;
}

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

.process-step {
    min-height: 12rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.process-step strong {
    display: block;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-serif);
    font-size: 2.7rem;
    line-height: 1;
}

.process-step h3 {
    margin: 0;
}

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

.reason {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 5rem;
    padding: 1.2rem;
    border-radius: 1.1rem;
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.reason .icon,
.feature-list .icon,
.package-card li .icon,
.care-card li .icon {
    color: var(--primary);
}

.testimonial {
    margin: 0;
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.testimonial p {
    color: rgba(248, 250, 252, 0.84);
}

.testimonial footer {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.testimonial footer span {
    display: block;
    color: var(--muted-soft);
    font-size: 0.9rem;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.12em;
}

.blog-preview__image {
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 50% 40%, rgba(109, 93, 251, 0.24), transparent 70%),
        linear-gradient(135deg, rgba(11, 18, 32, 0.5), rgba(5, 7, 13, 0.8));
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 700;
}

.final-cta {
    position: relative;
    max-width: 1180px;
    margin-inline: auto;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 2rem;
    text-align: center;
    overflow: hidden;
}

.page-hero {
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

.page-hero--compact {
    padding-bottom: 4rem;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1.2rem;
}

.market-toggle {
    display: inline-flex;
    gap: 0.35rem;
    margin-top: 2rem;
    padding: 0.4rem;
    border-radius: 999px;
}

.market-toggle button {
    min-height: 2.65rem;
    padding: 0.55rem 1.15rem;
    color: rgba(248, 250, 252, 0.72);
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-weight: 700;
    transition:
        color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.market-toggle button:hover {
    color: var(--foreground);
    transform: translateY(-1px);
}

.market-toggle button.is-active {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 34px -18px rgba(109, 93, 251, 0.9);
}

.package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    margin-bottom: 3rem;
}

.package-card {
    display: flex;
    flex-direction: column;
}

.package-card__header p,
.package-card__meta {
    margin-bottom: 0;
}

.package-card ul,
.care-card ul,
.feature-list,
.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-card ul,
.care-card ul {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}

.package-card li,
.care-card li,
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(248, 250, 252, 0.84);
    font-size: 0.95rem;
}

.package-card .button {
    margin-top: auto;
}

.pricing-notice {
    margin: 0 auto 5rem;
    max-width: 980px;
    padding: 1.3rem;
    border-radius: 1.25rem;
    color: var(--muted);
    text-align: center;
}

.service-list {
    display: grid;
    gap: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 2rem;
}

.service-row__intro > .icon {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.service-row h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.service-row__intro p:last-child {
    color: var(--muted);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    align-content: start;
}

.feature-list li {
    min-height: 4rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
}

.contact-aside {
    display: grid;
    gap: 1.5rem;
}

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

.contact-card {
    min-height: 11rem;
    padding: 1.4rem;
    border-radius: 1.25rem;
}

.contact-card .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-card span,
.contact-card strong {
    display: block;
}

.contact-card span {
    color: var(--muted-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card strong {
    margin-top: 0.4rem;
    color: var(--foreground);
    font-size: 0.95rem;
}

.studio-card,
.contact-form {
    border-radius: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.studio-card p:not(.eyebrow) {
    color: var(--muted);
}

.studio-card strong {
    color: var(--foreground);
}

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

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

.contact-form label {
    display: grid;
    gap: 0.5rem;
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form label span {
    color: var(--accent);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.mobile-controls select {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    outline: 0;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(109, 93, 251, 0.64);
}

.form-container {
    max-width: 820px;
}

.section--page-content {
    padding-top: 0;
}

.narrow-content {
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 2rem;
}

.content-grid {
    display: grid;
    gap: 1.5rem;
}

.post-card__date {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.empty-state {
    padding: 2rem;
    border-radius: 1.5rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--background-deep);
}

.footer-aurora--one {
    top: -18rem;
    left: 22%;
    width: 36rem;
    height: 36rem;
    background: rgba(109, 93, 251, 0.1);
}

.footer-aurora--two {
    top: -18rem;
    right: 18%;
    width: 36rem;
    height: 36rem;
    background: rgba(0, 194, 255, 0.1);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
}

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

.footer-domain {
    color: var(--muted-soft);
    font-size: 0.85rem;
}

.footer-grid h2 {
    margin: 0 0 1.2rem;
    color: var(--foreground);
    font-size: 1rem;
}

.footer-grid ul {
    display: grid;
    gap: 0.7rem;
}

.footer-grid a:hover {
    color: var(--foreground);
}

.footer-contact li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.footer-contact .icon {
    color: var(--primary);
    margin-top: 0.2rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.footer-bottom div {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 1180px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-panel {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-height);
        display: block;
        max-height: calc(100svh - var(--header-height));
        overflow-y: auto;
        padding: 1.25rem 24px 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(11, 18, 32, 0.98);
        transform: translateY(-120%);
        opacity: 0;
        transition:
            transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
            opacity 220ms ease;
    }

    .mobile-panel.is-open {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav {
        display: grid;
        gap: 0.35rem;
    }

    .mobile-nav__list {
        display: grid;
        gap: 0.35rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-nav__link,
    .mobile-nav a {
        display: block;
        padding: 0.9rem 0;
        color: rgba(248, 250, 252, 0.72);
        font-size: 1.05rem;
    }

    .mobile-nav__link.is-active,
    .mobile-nav .current-menu-item > a,
    .mobile-nav .current_page_item > a {
        color: var(--foreground);
        font-weight: 800;
    }

    .mobile-controls {
        display: grid;
        gap: 1rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-controls label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        color: var(--muted);
    }

    .mobile-controls select {
        width: auto;
        min-width: 9rem;
    }

    .hero__grid,
    .showcase,
    .service-row,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .work-grid,
    .service-grid,
    .package-grid,
    .pricing-preview,
    .care-grid,
    .testimonial-grid,
    .blog-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }

    .container,
    .site-header__inner {
        width: min(100% - 32px, var(--container));
    }

    .brand__text {
        font-size: 0.96rem;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero__grid {
        gap: 2.5rem;
    }

    .hero-device {
        padding: 1.25rem;
    }

    .device-preview div {
        min-height: 7rem;
    }

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

    .floating-icon {
        width: 4.5rem;
        height: 4.5rem;
        right: 0.5rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-heading--split {
        display: block;
        text-align: center;
    }

    .work-grid,
    .service-grid,
    .feature-grid,
    .package-grid,
    .pricing-preview,
    .care-grid,
    .process-grid,
    .reasons-grid,
    .testimonial-grid,
    .blog-preview-grid,
    .footer-grid,
    .contact-cards,
    .feature-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .showcase,
    .final-cta,
    .service-row,
    .contact-form,
    .studio-card {
        border-radius: 1.35rem;
    }

    .page-hero {
        padding: 5rem 0 3.5rem;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

    .market-toggle {
        width: 100%;
        flex-wrap: wrap;
        border-radius: 1.2rem;
    }

    .market-toggle button {
        flex: 1 1 45%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }
}

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

    body.akca-site {
        opacity: 1;
        animation: none !important;
    }

    .akca-reveal,
    .reveal,
    .akca-hero-sequence .akca-hero-item,
    .akca-hero-card {
        opacity: 1;
        transform: none !important;
        animation: none !important;
    }

    .aurora,
    .footer-aurora {
        animation: none !important;
    }
}
