/**
 * Panasoft — design language extracted from ajans.moredemodepo.com
 * Palette, radius, services tabs, work cards, project detail, motion.
 */
:root {
    --primary-color: #d7d7d7;
    --secondary-color: #1c1c1c;
    --text-color: #a0a0a0;
    --accent-color: #dcf763;
    --bg-color: #161616;
    --white-color: #ffffff;
    --divider-color: rgba(255, 255, 255, 0.1);
    --font: "Montserrat", sans-serif;
    --radius-lg: 40px;
    --radius-md: 30px;
    --radius-sm: 14px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 84px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    padding-top: var(--header-h);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary-color);
}

p {
    margin: 0 0 1.2em;
    line-height: 1.7;
}

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

/* Buttons */
.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--bg-color);
    border: 0;
    padding: 18px 52px 18px 20px;
    overflow: hidden;
    z-index: 0;
    transition: color 0.4s ease;
    cursor: pointer;
}

.btn-default::before {
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 1;
    transition: transform 0.35s var(--ease);
}

.btn-default::after {
    content: "";
    position: absolute;
    inset: 0;
    left: -15%;
    width: 0;
    background: var(--white-color);
    transform: skew(45deg);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-default:hover {
    color: var(--bg-color);
}

.btn-default:hover::after {
    width: 130%;
    transform: skew(0deg);
    left: 0;
}

.btn-default:hover::before {
    transform: translate(3px, -50%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary,
.btn.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--bg-color);
    border: 0;
    padding: 18px 24px;
    cursor: pointer;
    font-family: inherit;
}

.inner-hero {
    background: var(--secondary-color);
    padding: 80px 0 48px;
}

.inner-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--white-color);
}

.inner-hero em {
    color: var(--accent-color);
    font-style: normal;
}

.inner-hero p {
    color: var(--text-color);
    max-width: 640px;
    font-size: 17px;
    margin-top: 16px;
}

.experience-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.experience-points article {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 20px 22px;
}

.experience-points b {
    color: var(--accent-color);
    display: block;
    margin-bottom: 6px;
}

.experience-points strong {
    display: block;
    color: var(--white-color);
    margin-bottom: 6px;
}

.experience-preview {
    padding: 0 0 100px;
}

.experience-copy > span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 13px;
}

.experience-copy h2 {
    color: var(--white-color);
    font-size: clamp(28px, 4vw, 44px);
    margin: 12px 0 8px;
}

.experience-copy h2 em {
    color: var(--accent-color);
    font-style: normal;
}

.eyebrow {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 13px;
    margin-bottom: 12px;
}

.readmore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
}

.readmore-btn:hover {
    color: var(--white-color);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(22, 22, 22, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transform: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--divider-color);
}

.site-header.is-hidden {
    transform: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
    position: relative;
    z-index: 91;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 92;
}

.logo span {
    color: var(--accent-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.25s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 92;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white-color);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.desktop-only { display: inline-flex; }
.mobile-only { display: none; }

/* Hero */
.hero {
    position: relative;
    padding: 56px 0 8px;
    overflow: hidden;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    pointer-events: none;
}

.hero-atmosphere-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.4) 0%, var(--bg-color) 92%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-kicker span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.hero h1 {
    font-size: clamp(26px, 3.8vw, 42px);
    line-height: 1.18;
    color: var(--white-color);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.hero h1 em,
.hero h1 span {
    color: var(--accent-color);
    font-style: normal;
}

.hero-sub {
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hero-showcase {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 16px));
    height: 430px;
    margin: 36px auto 28px;
}

.hero-showcase-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shot {
    position: absolute;
    top: 52%;
    width: min(236px, 21vw);
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ececec;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    transform-origin: center center;
}

.hero-shot img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
}

.hero-shot[data-pos="-2"] {
    left: 1.5%;
    z-index: 1;
    transform: translateY(-50%) scale(0.72) rotate(-7deg);
    opacity: 0.9;
}

.hero-shot[data-pos="-1"] {
    left: 17%;
    z-index: 2;
    transform: translateY(-50%) scale(0.86) rotate(-3.5deg);
}

.hero-shot[data-pos="0"] {
    left: 50%;
    z-index: 3;
    width: min(280px, 26vw);
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.52);
}

.hero-shot[data-pos="1"] {
    left: auto;
    right: 17%;
    z-index: 2;
    transform: translateY(-50%) scale(0.86) rotate(3.5deg);
}

.hero-shot[data-pos="2"] {
    left: auto;
    right: 1.5%;
    z-index: 1;
    transform: translateY(-50%) scale(0.72) rotate(7deg);
    opacity: 0.9;
}

/* Section titles */
.section-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.section-title h3 {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 44px);
    max-width: 720px;
    color: var(--white-color);
}

.section-title.is-center {
    text-align: center;
    width: 100%;
    margin-bottom: 48px;
}

.section-title.is-center h2 {
    max-width: 20ch;
    margin-inline: auto;
}

/* Services — interactive list + glass preview */
.our-services {
    position: relative;
    padding: 100px 0;
    overflow-x: clip;
}

.our-services::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: 120px;
    width: 240px;
    height: 240px;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    animation: spinFloat 14s linear infinite alternate;
    pointer-events: none;
}

@keyframes spinFloat {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-80px) rotate(180deg); }
}

.our-services-boxes {
    display: flex;
    align-items: stretch;
    gap: 70px;
}

.our-services-nav {
    width: calc(40% - 35px);
    flex-shrink: 0;
}

.our-services-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.our-services-nav .nav-link {
    width: 100%;
    position: relative;
    text-align: left;
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    padding: 26px 78px 26px 28px;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.our-services-nav .nav-link span {
    margin-right: 18px;
}

.our-services-nav .nav-link::after {
    content: "↗";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white-color);
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
}

.our-services-nav .nav-link.is-active,
.our-services-nav .nav-link:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--bg-color);
}

.our-services-nav .nav-link.is-active::after,
.our-services-nav .nav-link:hover::after {
    background: #111;
    color: var(--white-color);
    transform: translateY(-50%) rotate(45deg);
    content: "→";
}

.our-service-stage {
    position: relative;
    width: calc(60% - 35px);
    min-height: 520px;
}

.our-service-box {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}

.our-service-box.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.service-box-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.service-box-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease);
}

.our-service-box.is-active .service-box-image img {
    transform: scale(1.04);
}

.service-box-item {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 14px 16px;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(22, 22, 22, 0.55);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: bottom 0.4s ease;
}

.our-service-box:hover .service-box-item {
    bottom: 28px;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin: 0;
    color: #111;
    font-size: 18px;
    flex-shrink: 0;
}

.service-box-item-content {
    flex: 1;
    min-width: 0;
}

.service-box-item-content h3 {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}

.service-box-item-content p {
    display: none;
}

/* Work / reference cards */
.our-work {
    background: var(--secondary-color);
    padding: 100px 0 70px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 24px;
    transition: transform 0.4s var(--ease);
}

.work-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0.05;
    z-index: 0;
}

.work-item:hover {
    transform: translateY(-8px);
}

.work-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.work-image img {
    width: 100%;
    aspect-ratio: 1 / 0.76;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.5s var(--ease);
}

.work-item:hover .work-image img {
    transform: scale(1.06);
}

.work-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.work-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 8px;
}

.work-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

.work-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--white-color);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.work-item:hover .work-btn {
    background: var(--accent-color);
    color: #111;
    transform: rotate(45deg);
}

/* Stats */
.stats-bar {
    padding: 48px 0;
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
    text-align: center;
}

.stat {
    text-align: center;
    width: 100%;
}

.stat strong,
.stat span {
    display: block;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 42px;
    color: var(--accent-color);
    letter-spacing: -0.03em;
}

.stat span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

/* Logos */
.logos-strip {
    overflow: hidden;
    padding: 28px 0;
    border-bottom: 1px solid var(--divider-color);
}

.logos-inner {
    display: flex;
    gap: 48px;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.logo-item strong {
    color: var(--white-color);
    margin-right: 8px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Process / pricing / faq / form */
.process-section,
.pricing-section,
.faq-section,
.conversion-section,
.cta-banner,
.reviews-section {
    padding: 100px 0;
}

.reviews-section {
    position: relative;
    overflow: hidden;
}

.reviews-map {
    position: absolute;
    inset: 8% 0 18%;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.15px, transparent 1.4px);
    background-size: 16px 16px;
    -webkit-mask-image:
        radial-gradient(ellipse 42% 58% at 28% 48%, #000 42%, transparent 70%),
        radial-gradient(ellipse 34% 48% at 52% 44%, #000 38%, transparent 72%),
        radial-gradient(ellipse 38% 52% at 74% 50%, #000 40%, transparent 70%);
    mask-image:
        radial-gradient(ellipse 42% 58% at 28% 48%, #000 42%, transparent 70%),
        radial-gradient(ellipse 34% 48% at 52% 44%, #000 38%, transparent 72%),
        radial-gradient(ellipse 38% 52% at 74% 50%, #000 40%, transparent 70%);
    opacity: 0.45;
}

.reviews-head {
    max-width: 760px;
    margin-bottom: 40px;
}

.reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 14px;
}

.reviews-kicker span {
    color: var(--accent-color);
}

.reviews-head h2 {
    color: var(--accent-color);
    font-size: clamp(28px, 4.4vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    width: 100%;
    container-type: inline-size;
    scroll-behavior: smooth;
}

.reviews-viewport::-webkit-scrollbar {
    display: none;
}

.reviews-viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.review-card {
    flex: 0 0 calc((100cqw - 48px) / 3);
    width: calc((100cqw - 48px) / 3);
    scroll-snap-align: start;
    background: var(--secondary-color);
    border-radius: 28px;
    padding: 28px 26px 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 auto;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--divider-color);
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #111;
    font-weight: 700;
    font-size: 13px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    color: var(--white-color);
    font-size: 15px;
}

.review-author small {
    display: block;
    color: var(--text-color);
    font-size: 13px;
    margin-top: 2px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.reviews-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.reviews-dots button.is-active {
    background: transparent;
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    background: var(--accent-color);
}

.center-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white-color);
    margin-bottom: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.step {
    background: var(--secondary-color);
    border-radius: 24px;
    padding: 28px 22px;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h4 {
    color: var(--white-color);
    margin-bottom: 8px;
}

.step-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #111;
    background: var(--accent-color);
    border-radius: 999px;
    padding: 4px 10px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
}

.price-card.popular {
    outline: 1px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent-color);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.price-label {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.price-desc {
    display: block;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    min-height: 3.2em;
}

.price-amount {
    font-size: 40px;
    color: var(--white-color);
    font-weight: 700;
    margin: 16px 0;
}

.price-amount small {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.price-card li {
    padding: 8px 0 8px 22px;
    position: relative;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.full-width { width: 100%; justify-content: center; }

.faq-section {
    overflow-anchor: none;
}

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

.faq-item {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    align-self: start;
    overflow-anchor: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--white-color);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.faq-question span {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer-inner p {
    margin: 0;
    padding: 0 22px 20px;
}

.faq-item.open .faq-answer {
    display: grid;
    grid-template-rows: 1fr;
}

.faq-stage { display: none; }

.conversion-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.offer-form {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.offer-form h3 {
    color: var(--white-color);
    margin-bottom: 8px;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
    width: 100%;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    color: var(--white-color);
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.offer-form textarea { min-height: 110px; resize: vertical; }

.cta-banner {
    background: var(--secondary-color);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-inner h2 {
    font-size: clamp(32px, 5vw, 54px);
    color: var(--white-color);
}

.cta-inner h2 span {
    color: var(--accent-color);
}

.cta-right {
    max-width: 440px;
    flex: 0 1 440px;
}

.cta-right p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.cta-right strong {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.footer-seo-cta {
    margin: 0;
    padding: 88px 0;
}

.seo-page .prose {
    max-width: 860px;
}

.seo-page .prose ul,
.seo-page .prose ol {
    padding-left: 1.2em;
    margin: 0.8em 0 1.4em;
}

.seo-page .prose li {
    margin: 0.45em 0;
}

.footer-contact > span:not(.footer-label) {
    display: block;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    max-width: 260px;
}

/* Footer */
.site-footer {
    padding: 72px 0 28px;
    border-top: 1px solid var(--divider-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-contact a {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.footer-cta {
    color: var(--accent-color) !important;
    font-weight: 600;
    margin-top: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--divider-color);
    font-size: 13px;
}

/* Inner pages */
.page-header {
    background: var(--secondary-color);
    padding: 80px 0 48px;
}

.page-header-box h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header-box h1 span {
    color: var(--accent-color);
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

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

.inner-sheet,
.page-content {
    padding: 72px 0 100px;
}

.page-content {
    width: min(820px, calc(100% - 48px));
    margin-inline: auto;
    color: var(--text-color);
    font-size: 17px;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-header h1 {
    color: var(--white-color);
}

.page-content a {
    color: var(--accent-color);
}

.page-content ul {
    padding-left: 1.2em;
}

.prose {
    max-width: 820px;
    color: var(--text-color);
    font-size: 17px;
}

.prose h2, .prose h3 { color: var(--white-color); margin: 1.4em 0 0.5em; }

.prose *,
.page-content * {
    font-family: inherit !important;
}

.prose [style*="color"],
.page-content [style*="color"] {
    color: var(--text-color) !important;
}

.prose h1[style],
.prose h2[style],
.prose h3[style],
.page-content h1[style],
.page-content h2[style],
.page-content h3[style],
.page-content h4[style] {
    color: var(--white-color) !important;
}

.prose a,
.prose a[style],
.page-content a,
.page-content a[style] {
    color: var(--accent-color) !important;
}

.contact-box {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    padding: 20px 22px;
    margin: 20px 0 28px;
}

.contact-box p {
    margin-bottom: 8px;
}

.page-content .quick-links a {
    color: var(--accent-color);
}

.info-box h3,
.warning-box h4,
.success-box strong {
    color: var(--accent-color) !important;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--secondary-color);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 0;
}

.contact-card-label,
.contact-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.3;
}

.contact-card strong,
.contact-card a {
    display: block;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    word-break: break-word;
}

.alert-ok, .alert-err {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.alert-ok { background: #e6f7c3; color: #11180a; }
.alert-err { background: #ffe1dc; color: #7a1f14; }

/* Project detail */
.page-work-single {
    padding: 80px 0 100px;
}

.work-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

.work-single-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 16px);
}

.work-category-list {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.work-category-title {
    background: var(--accent-color);
    padding: 24px 28px;
}

.work-category-title h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

.category-item-list { padding: 28px; }

.category-list-item {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.category-list-item:last-child {
    border-bottom: 0;
    margin: 0;
    padding: 0;
}

.category-list-item h3 {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-list-item p {
    margin: 0;
    color: var(--text-color);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: #111;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

.sidebar-cta-box {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 32px 24px;
}

.sidebar-cta-box .mail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: var(--accent-color);
    color: #111;
    display: grid;
    place-items: center;
    font-size: 26px;
}

.cta-contact-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.cta-contact-content a { color: var(--primary-color); }

.work-feature-image {
    margin-bottom: 32px;
}

.work-feature-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
}

.work-entry h2 {
    font-size: clamp(32px, 5vw, 54px);
    color: var(--accent-color);
    margin-bottom: 18px;
}

.work-entry p { margin-bottom: 16px; }

/* Bidirectional scroll motion */
[data-motion] {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

[data-motion].from-above:not(.is-in) {
    transform: translate3d(0, -56px, 0);
}

[data-motion].from-below:not(.is-in) {
    transform: translate3d(0, 56px, 0);
}

[data-motion="left"]:not(.is-in) { transform: translate3d(-48px, 0, 0); }
[data-motion="right"]:not(.is-in) { transform: translate3d(48px, 0, 0); }
[data-motion="scale"]:not(.is-in) { transform: scale(0.94); }
[data-motion="fade"]:not(.is-in) { transform: none; }

[data-motion].is-in {
    opacity: 1;
    transform: none;
}

.cursor-dot,
.cursor-ring {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--accent-color);
    }

    .cursor-ring {
        width: 36px;
        height: 36px;
        border: 1px solid var(--accent-color);
        transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    }

    .cursor-ring.is-hover {
        width: 56px;
        height: 56px;
        background: rgba(220, 247, 99, 0.12);
    }
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 70;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    font-size: 28px;
}

@media (max-width: 1100px) {
    .our-services::before {
        display: none;
    }

    .hero-showcase {
        height: 360px;
    }

    .hero-shot img {
        height: 280px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .our-services-boxes,
    .work-layout,
    .conversion-inner,
    .process-steps,
    .pricing-cards,
    .hero-cards,
    .footer-top,
    .contact-layout {
        grid-template-columns: 1fr;
        display: grid;
        gap: 28px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        text-align: center;
    }

    .review-card {
        flex: 0 0 calc((100cqw - 24px) / 2);
        width: calc((100cqw - 24px) / 2);
    }

    .our-services-boxes {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .our-services-nav,
    .our-service-stage {
        width: 100%;
        position: relative;
    }

    .our-service-box {
        position: relative;
        inset: auto;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .our-service-box.is-active {
        display: block;
    }

    .our-service-stage { min-height: 0; }
    .service-box-image img { min-height: 280px; }
    .work-single-sidebar { position: static; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .container {
        width: min(1280px, calc(100% - 32px));
    }

    .site-header {
        z-index: 100;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #111;
    }

    .site-header.is-hidden {
        transform: none;
    }

    .header-inner {
        min-height: 64px;
    }

    .logo {
        font-size: 22px;
    }

    .mobile-toggle {
        display: block;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: inline-flex; }

    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: #111;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 88px 24px 32px;
        gap: 0;
        z-index: 90;
        overflow-y: auto;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        font-size: 25px;
        font-weight: 600;
        color: var(--white-color);
        padding: 16px 0;
        border-bottom: 1px solid var(--divider-color);
        white-space: normal;
    }

    .main-nav .btn-default {
        margin-top: 24px;
        justify-content: center;
        width: 100%;
        font-size: 16px;
        padding: 18px 52px 18px 20px;
        color: #111;
        border-bottom: 0;
        background: var(--accent-color);
    }

    .main-nav .btn-default:hover,
    .main-nav .btn-default:focus,
    .main-nav .btn-default.active {
        color: #111;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
        padding: 44px 0 12px;
    }

    .hero h1 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-showcase {
        height: 280px;
        margin-top: 28px;
    }

    .hero-shot img {
        height: 220px;
    }

    .hero-shot[data-pos="-2"],
    .hero-shot[data-pos="2"] {
        display: none;
    }

    .hero-shot[data-pos="-1"] {
        left: 6%;
        width: 38%;
        transform: translateY(-50%) scale(0.88);
    }

    .hero-shot[data-pos="1"] {
        right: 6%;
        width: 38%;
        transform: translateY(-50%) scale(0.88);
    }

    .hero-shot[data-pos="0"] {
        width: 46%;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        justify-items: center;
        text-align: center;
    }

    .stat {
        text-align: center;
    }

    .stat strong {
        font-size: 28px;
    }

    .section-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .section-title h2,
    .section-title.is-center h2,
    .center-title,
    .cta-inner h2 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .our-services,
    .our-work,
    .process-section,
    .pricing-section,
    .faq-section,
    .conversion-section,
    .cta-banner,
    .reviews-section {
        padding: 56px 0;
    }

    .review-card {
        flex: 0 0 100cqw;
        width: 100cqw;
        min-height: 240px;
        border-radius: 22px;
        padding: 22px 20px 18px;
    }

    .reviews-head h2 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .our-services-nav .nav-link {
        font-size: 15px;
        padding: 16px 62px 16px 16px;
        border-radius: 18px;
    }

    .our-services-nav .nav-link::after {
        width: 36px;
        height: 36px;
        right: 12px;
        font-size: 14px;
    }

    .service-box-image img {
        min-height: 180px;
        max-height: 200px;
        object-fit: cover;
    }

    .service-box-item {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .service-box-item .icon-box {
        display: none;
    }

    .service-box-item-content h3 {
        font-size: 14px;
    }

    .readmore-btn {
        font-size: 13px;
        white-space: nowrap;
    }

    /* Reference cards become compact table rows on mobile */
    .work-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .work-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 10px;
        border-radius: 18px;
        margin: 0;
        height: auto;
    }

    .work-item:hover {
        transform: none;
    }

    .work-image {
        width: 88px;
        flex-shrink: 0;
        margin: 0;
        border-radius: 14px;
    }

    .work-image img {
        aspect-ratio: 1 / 1;
        height: 88px;
        border-radius: 14px;
    }

    .work-body {
        flex: 1;
        min-width: 0;
        gap: 8px;
    }

    .work-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .work-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .offer-form {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .page-header {
        padding: 48px 0 32px;
    }

    .page-header-box h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .work-layout {
        gap: 24px;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    [data-motion],
    .our-service-box,
    .work-item,
    .logos-inner {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .reviews-viewport {
        scroll-behavior: auto;
    }
}
