[data-aos] {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

[data-aos="fade-left"] {
    transform: translate3d(35px, 0, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-35px, 0, 0);
}

[data-aos="fade-down"] {
    transform: translate3d(0, -35px, 0);
}

[data-aos].aos-ready {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.services-section {
    background: linear-gradient(180deg, rgba(6, 12, 30, 0.6), rgba(5, 10, 22, 0.95));
    position: relative;
}

.services-section::after {
    content: "";
    position: absolute;
    inset: 10% 5% auto;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.25), transparent 65%);
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: 0 25px 60px rgba(2, 6, 16, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    min-height: 100%;
    transition: var(--liquid-transition);
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card .service-icon .icon {
    line-height: 1;
    display: block;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(93, 220, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(93, 220, 255, 0.6);
    box-shadow: 0 30px 80px rgba(0, 10, 20, 0.8), 0 0 60px rgba(93, 220, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.projects-section {
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 3rem);
    overflow: visible;
}

.projects-intro,
.projects-cta {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    text-align: center;
    padding-inline: var(--layout-gutter);
}

.projects-intro {
    max-width: min(860px, 92vw);
}

.projects-intro h2 {
    font-family: "Syne", "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 0.4rem;
}

.projects-intro p {
    color: var(--muted);
}

.project-marquee {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.project-marquee * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.project-marquee.is-dragging {
    cursor: grabbing;
}

.project-marquee.is-dragging .project-marquee-track {
    animation-play-state: paused;
}

.project-marquee-track {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: clamp(1.25rem, 2vw, 1.85rem);
    width: fit-content;
    min-width: calc(100% + 1px);
    padding-inline: clamp(1.5rem, 3vw, 3rem);
    animation: projectMarquee 95s linear infinite;
    will-change: transform;
}

.project-marquee:hover .project-marquee-track {
    animation-play-state: paused;
}

.project-marquee .project-card {
    flex: 0 0 clamp(240px, 26vw, 340px);
    min-height: 100%;
    background: rgba(3, 8, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] .project-marquee {
    background: linear-gradient(180deg, rgba(248, 249, 252, 0.65), rgba(230, 238, 255, 0.8));
}

body[data-theme="light"] .project-marquee .project-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    color: #0f172a;
}

body[data-theme="light"] .project-marquee .project-info p {
    color: #4b5563;
}

.projects-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.projects-cta .btn {
    min-width: 220px;
}

@keyframes projectMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-marquee-track {
        animation: none;
        transform: none !important;
    }
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    min-height: 70px;
}

.service-card strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.roi-section {
    background: radial-gradient(circle at 15% 40%, rgba(13, 110, 253, 0.12), transparent 55%),
        linear-gradient(135deg, rgba(9, 13, 30, 0.95), rgba(5, 8, 20, 0.9));
}

.roi-card {
    border-radius: calc(var(--radius-lg) + 10px);
    padding: clamp(2rem, 5vw, 3.5rem);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.roi-card::after {
    content: "";
    position: absolute;
    inset: -5% 40% auto -10%;
    height: 220px;
    background: radial-gradient(circle, rgba(93, 220, 255, 0.15), transparent 65%);
    opacity: 0.5;
    pointer-events: none;
}

.roi-range input[type="range"] {
    width: 100%;
    margin: 1.5rem 0 0.5rem;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.roi-output {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.roi-output strong {
    font-size: 2rem;
}

.roi-output span {
    color: var(--muted);
}

.roi-cta {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: var(--liquid-transition);
}

.roi-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(93, 220, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.roi-cta ul {
    list-style: none;
    margin: 1.5rem 0;
    color: var(--muted);
    display: grid;
    gap: 0.7rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: calc(var(--radius-lg) + 6px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.offers-section .project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    align-items: stretch;
    grid-auto-rows: 1fr;
    max-width: min(820px, 100%);
    margin-inline: auto;
}

.category-block {
    border-radius: calc(var(--radius-lg) + 8px);
    border: 1px solid var(--glass-border);
    background: rgba(4, 6, 14, 0.8);
    padding: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-block .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.category-block .section-header h3 {
    margin-bottom: 0.3rem;
}

.project-card {
    transition: var(--liquid-transition);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card .project-image img {
    height: 100%;
    min-height: 260px;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(93, 220, 255, 0.5);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 60px rgba(13, 110, 253, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(5, 7, 16, 0.8), rgba(13, 110, 253, 0.55));
    opacity: 0;
    transition: 0.3s ease;
    color: var(--primary);
    font-weight: 600;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.offer-card {
    --offer-accent: var(--accent);
    --offer-overlay: rgba(93, 220, 255, 0.4);
    background: radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.08), transparent 65%),
        radial-gradient(circle at 80% 0%, rgba(93, 220, 255, 0.15), transparent 45%),
        linear-gradient(135deg, rgba(5, 8, 18, 0.95), rgba(8, 14, 32, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: calc(var(--radius-lg) + 12px);
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(280px, 1.1fr);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    height: 100%;
    align-self: stretch;
    isolation: isolate;
}

.offer-card::before,
.offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}

.offer-card::before {
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.4;
    filter: blur(35px);
}

.offer-card::after {
    border: 1px solid rgba(255, 255, 255, 0.05);
    mix-blend-mode: screen;
}

.offer-card .project-image {
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 70%);
    display: flex;
    height: 100%;
}

.offer-card .project-image picture {
    display: flex;
    width: 100%;
    height: 100%;
}

.offer-card .project-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: clamp(1.8rem, 3.5vw, 3rem);
    background: rgba(1, 3, 8, 0.55);
    position: relative;
}

.offer-card .project-info::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-lg));
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.offer-card .project-info > * {
    position: relative;
}

.offer-card .badge {
    align-self: flex-start;
    color: var(--offer-accent);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.offer-headline {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.offer-pills span {
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.25rem 0.85rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.offer-features svg {
    width: 1rem;
    height: 1rem;
    color: var(--offer-accent);
    flex-shrink: 0;
}

.offer-cta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.offer-cta .btn {
    min-width: 200px;
    border-color: var(--offer-accent);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.offer-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.offer-cta-note svg {
    width: 1rem;
    height: 1rem;
    color: var(--offer-accent);
}

.offer-card .project-overlay {
    background: linear-gradient(135deg, rgba(5, 7, 16, 0.85), var(--offer-overlay));
}

.offer-card.theme-sunrise {
    --offer-accent: #ff8a3d;
    --offer-overlay: rgba(255, 138, 61, 0.5);
    border-color: rgba(255, 138, 61, 0.35);
    box-shadow: 0 25px 70px rgba(255, 138, 61, 0.25);
}

.offer-card.theme-sunrise .project-info {
    background: linear-gradient(160deg, rgba(255, 138, 61, 0.18), rgba(16, 10, 6, 0.85));
}

.offer-card.theme-lagoon {
    --offer-accent: #33d0c4;
    --offer-overlay: rgba(51, 208, 196, 0.45);
    border-color: rgba(51, 208, 196, 0.35);
    box-shadow: 0 25px 70px rgba(51, 208, 196, 0.2);
}

.offer-card.theme-lagoon .project-info {
    background: linear-gradient(160deg, rgba(51, 208, 196, 0.15), rgba(5, 14, 18, 0.9));
}

.offer-card.theme-amber {
    --offer-accent: #f6c343;
    --offer-overlay: rgba(246, 195, 67, 0.45);
    border-color: rgba(246, 195, 67, 0.35);
    box-shadow: 0 25px 70px rgba(246, 195, 67, 0.22);
}

.offer-card.theme-amber .project-info {
    background: linear-gradient(160deg, rgba(246, 195, 67, 0.15), rgba(22, 15, 3, 0.9));
}

.offer-card.theme-night {
    --offer-accent: #8ba0ff;
    --offer-overlay: rgba(139, 160, 255, 0.45);
    border-color: rgba(139, 160, 255, 0.35);
    box-shadow: 0 25px 70px rgba(139, 160, 255, 0.28);
}

.offer-card.theme-night .project-info {
    background: linear-gradient(160deg, rgba(139, 160, 255, 0.18), rgba(7, 7, 24, 0.9));
}

.hero-meta {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hero-meta div {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 7, 16, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-meta strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
}

.hero-meta span {
    font-size: 0.9rem;
    color: var(--muted);
}

.service-story {
    position: relative;
    background: radial-gradient(circle at 12% 20%, rgba(93, 220, 255, 0.25), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(255, 138, 61, 0.18), transparent 45%),
        linear-gradient(160deg, rgba(5, 9, 22, 0.95), rgba(2, 4, 12, 0.85));
    overflow: hidden;
}

.service-story::before,
.service-story::after {
    content: "";
    position: absolute;
    inset: auto 10% -120px 10%;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
}

.service-story::after {
    inset: -140px 40% auto;
    height: 220px;
    background: radial-gradient(circle, rgba(93, 220, 255, 0.35), transparent 70%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
    z-index: 1;
}

.story-panel {
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: clamp(1.5rem, 3.5vw, 3rem);
    background: rgba(4, 7, 18, 0.85);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.story-panel--lead {
    background: linear-gradient(150deg, rgba(5, 8, 20, 0.95), rgba(6, 12, 32, 0.9));
}

.story-panel--list {
    background: rgba(7, 12, 28, 0.85);
}

.story-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.story-panel p {
    color: rgba(255, 255, 255, 0.85);
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--muted);
}

.story-list li strong {
    color: #fff;
    margin-right: 0.35rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.story-metrics div {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.story-metrics strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
}

.story-metrics span {
    font-size: 0.9rem;
    color: var(--muted);
}

.story-pillboard {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
}

.story-pillboard span {
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
}

.story-quote {
    margin: 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-quote blockquote {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.story-quote figcaption {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.industry-section {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.9), rgba(6, 10, 24, 0.95));
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.industry-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(5, 9, 24, 0.8);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
}

.industry-card li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.timeline-section {
    background: var(--bg-soft);
}

.timeline-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-index {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(93, 220, 255, 0.4);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--accent);
}

.timeline-step strong {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--muted);
}

.service-longform {
    background: linear-gradient(180deg, rgba(4, 7, 18, 0.9), rgba(9, 14, 30, 0.95));
}

.longform-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.longform-grid aside {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    background: rgba(5, 9, 24, 0.8);
}

.longform-grid ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.6rem;
}

.faq-section {
    background: var(--bg-soft);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: inherit;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-toggle svg {
    width: 1rem;
    height: 1rem;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
}

.pillars-section {
    background: linear-gradient(180deg, rgba(5, 9, 24, 0.95), rgba(2, 4, 12, 0.9));
    position: relative;
    overflow: hidden;
}

.pillars-section::after {
    content: "";
    position: absolute;
    inset: auto 10% 0;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(93, 220, 255, 0.35), transparent 65%);
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.pillar-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--glass-bg);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pillar-card .badge {
    align-self: flex-start;
    background: rgba(93, 220, 255, 0.12);
    border: 1px solid rgba(93, 220, 255, 0.4);
    color: var(--accent);
}

.pillar-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.pillar-metrics li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillars-section svg,
.engagement-list svg,
.offer-features svg {
    color: var(--accent);
}

.playbook-section {
    background: var(--bg-soft);
}

.playbook-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.playbook-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    background: var(--glass-bg);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.9fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: stretch;
}

.playbook-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.playbook-subline {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.playbook-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.playbook-tags span {
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
}

.playbook-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.playbook-steps li {
    display: flex;
    gap: 0.75rem;
}

.step-badge {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #05070f;
    background: var(--accent);
    box-shadow: inset 0 -5px 12px rgba(0, 0, 0, 0.2);
}

.playbook-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 260px;
    position: relative;
}

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

.engagement-section {
    background: linear-gradient(180deg, rgba(2, 5, 14, 0.85), rgba(8, 14, 32, 0.95));
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.engagement-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: rgba(8, 15, 36, 0.8);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.engagement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.engagement-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.stack-section {
    background: var(--bg-soft);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.stack-badge {
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    background: var(--glass-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 150px;
    justify-content: center;
}

.stack-badge picture {
    display: grid;
    place-items: center;
    width: 100%;
}

.stack-badge img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.15);
}

.stack-badge span {
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .playbook-card {
        grid-template-columns: 1fr;
    }

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

    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-card .project-image {
        order: 1;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: 220px;
    }

    .offer-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-cta-note {
        justify-content: flex-start;
    }

    .offer-cta .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .pillar-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .step-badge {
        width: 36px;
        height: 36px;
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }

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

.project-info {
    padding: 1.5rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn.active {
    background: var(--gradient);
    color: #05070f;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.45);
}

.reference-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.reference-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
    border-radius: calc(var(--radius-lg) - 4px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(93, 220, 255, 0.05));
    position: relative;
    overflow: hidden;
}


.reference-card.reverse .reference-media {
    order: 2;
}

.reference-card.reverse .reference-body {
    order: 1;
}

.reference-card.is-hidden {
    display: none;
}

.reference-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    min-height: 260px;
}

.reference-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reference-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.reference-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reference-body h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.reference-body p {
    color: var(--muted);
    font-size: 1rem;
}

.reference-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.reference-actions .btn {
    min-width: 190px;
}

.template-section {
    background: var(--bg-soft);
}

.template-stack {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.template-stack .reference-card {
    background: linear-gradient(135deg, rgba(3, 7, 20, 0.85), rgba(8, 22, 48, 0.8));
}

.section-empty {
    text-align: center;
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
}

.view-more-container {
    text-align: center;
    margin-top: 2.5rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hero-case-media,
.case-media figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-case-media {
    min-height: 320px;
}

.hero-case-media img,
.case-media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-detail-section {
    background: var(--bg-soft);
}

.case-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.case-detail-content {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.8rem, 3vw, 3rem);
    background: var(--glass-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.case-detail-content h2,
.case-detail-content h3,
.case-detail-content h4 {
    margin-top: 1.5rem;
    font-family: "Syne", sans-serif;
}

.case-detail-content p,
.case-detail-content ul,
.case-detail-content ol {
    margin: 0.9rem 0;
    color: var(--muted);
}

.case-detail-content ul,
.case-detail-content ol {
    padding-left: 1.25rem;
}

.case-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border-spacing: 0;
}

.case-detail-content table th,
.case-detail-content table td {
    border: 1px solid var(--border);
    padding: 0.75rem;
    text-align: left;
}

@media (max-width: 768px) {
    .case-detail-content table {
        display: block;
        width: max-content;
        min-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.case-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-aside-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    background: var(--glass-bg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: var(--liquid-transition);
}

.case-aside-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.case-aside-card h4 {
    margin-bottom: 0.8rem;
}

.case-meta-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: var(--muted);
}

.case-meta-list span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.case-related-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.case-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--liquid-transition);
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(93, 220, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(13, 110, 253, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.case-media img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.case-body {
    padding: 1.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.process-step {
    border-radius: var(--radius-md);
    border: 1px dashed var(--glass-border);
    padding: 1.5rem;
    background: var(--glass-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--liquid-transition);
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 220, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.process-step span {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
}

.specialisation-section {
    background: var(--bg-soft);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.special-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.06) 0%, rgba(93, 220, 255, 0.03) 100%);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: var(--liquid-transition);
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.special-card:hover::before {
    opacity: 1;
}

.special-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(93, 220, 255, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(13, 110, 253, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.4), rgba(93, 220, 255, 0.3));
    border: 2px solid var(--glass-border);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-strong);
    transition: var(--liquid-transition);
}

.icon-circle span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-circle small {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.2rem;
    font-weight: 600;
}

.special-card:hover .icon-circle {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 16px 48px rgba(13, 110, 253, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.special-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.special-card .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--liquid-transition);
}

.special-card:hover .text-link {
    color: var(--accent-strong);
    transform: translateX(4px);
}

.testimonial-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 2rem 0 0;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(93, 220, 255, 0.05) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    border-color: rgba(93, 220, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(13, 110, 253, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.15);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-card p::before {
    content: '„';
    position: absolute;
    left: -0.3rem;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-meta strong {
    font-size: 1.1rem;
    color: var(--text);
}

.testimonial-meta span {
    color: var(--muted);
    font-size: 0.95rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
    width: 100%;
    position: static;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-btn:hover {
    border-color: rgba(13, 110, 253, 0.8);
    background: rgba(13, 110, 253, 0.15);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

.testimonial-btn:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.6);
}

.testimonial-dot:hover {
    background: rgba(13, 110, 253, 0.6);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-wrapper {
        max-width: 100%;
        padding-inline: 1rem;
    }

    .testimonial-slider {
        min-height: auto;
        padding: 0;
    }
    
    .testimonial-card {
        position: relative;
        display: none;
        opacity: 0;
        visibility: hidden;
        padding: 2rem 1.5rem;
        top: auto;
        left: auto;
        right: auto;
    }

    .testimonial-card.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .testimonial-card p {
        font-size: 1.05rem;
        padding: 0 1rem;
    }
    
    .testimonial-card p::before {
        font-size: 3rem;
    }

    .testimonial-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    background: var(--glass-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--liquid-transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}

.blog-card:hover,
.blog-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(93, 220, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(13, 110, 253, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.blog-card h3 {
    margin: 1rem 0 0.75rem;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-list .blog-card {
    padding: 1.75rem;
    cursor: pointer;
}

.blog-card-head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.blog-card-head h3 {
    margin: 0;
}

.blog-card-meta {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.blog-card-excerpt {
    color: var(--primary);
}

.blog-card-open {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.blog-card-open:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.blog-card-full {
    display: none;
}

.blog-reader {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 3vw, 2.8rem);
    background: linear-gradient(160deg, rgba(93, 220, 255, 0.12), rgba(13, 110, 253, 0.18)) , var(--glass-bg);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 520px;
}

.blog-reader-meta {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.blog-reader-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0;
}

.blog-reader-content {
    margin-top: 1rem;
    color: var(--primary);
    line-height: 1.8;
    max-height: min(70vh, 760px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.blog-reader-content p + p {
    margin-top: 1.2rem;
}

.blog-reader-empty,
.blog-empty {
    color: var(--muted);
    text-align: center;
}

.blog-reader-empty {
    margin-top: 2rem;
}

.case-body p {
    color: var(--muted);
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: flex-start;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent), var(--glass-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.faq-nav-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary);
    font-weight: 600;
    text-align: left;
    transition: var(--liquid-transition);
    cursor: inherit;
}

.faq-nav-btn small {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.faq-nav-btn:hover {
    border-color: rgba(93, 220, 255, 0.35);
    transform: translateX(4px);
}

.faq-nav-btn.is-active {
    border-color: rgba(93, 220, 255, 0.6);
    background: rgba(13, 110, 253, 0.12);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.25);
}

.faq-nav-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.faq-panels {
    width: 100%;
}

.faq-panel {
    display: none;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3.2rem);
    background: var(--glass-bg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.faq-panel.is-active {
    display: block;
    animation: faqPanelIn 0.6s ease forwards;
}

@keyframes faqPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-panel-header {
    margin-bottom: 1.75rem;
}

.faq-panel-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--muted);
}

.faq-panel-header h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0.35rem 0 0.4rem;
}

.faq-panel-header p {
    color: var(--muted);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-accordion details {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: var(--liquid-transition);
}

.faq-accordion details[open] {
    border-color: rgba(93, 220, 255, 0.55);
    background: rgba(13, 110, 253, 0.08);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35), 0 0 35px rgba(13, 110, 253, 0.2);
}

.faq-accordion summary {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: inherit;
}

.faq-accordion summary::after {
    content: "\2795";
    font-size: 0.9rem;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-accordion details[open] summary::after {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-accordion p {
    margin-top: 0.85rem;
    color: var(--muted);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .faq-nav-btn {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

@media (max-width: 640px) {
    .faq-nav {
        padding: 1rem;
    }
    .faq-nav-btn {
        flex-basis: 100%;
    }
}

.contact-section {
    background: linear-gradient(180deg, rgba(4, 6, 18, 0.95), rgba(5, 9, 22, 0.95));
}

.contact-wrapper {
    border-radius: calc(var(--radius-lg) + 8px);
    border: 1px solid var(--glass-border);
    padding: clamp(2rem, 5vw, 3.5rem);
    background: var(--glass-bg);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    align-items: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.contact-form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.contact-form-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(93, 220, 255, 0.3);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(93, 220, 255, 0.08));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: var(--liquid-transition);
}

.contact-form-meta span:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(93, 220, 255, 0.15));
    border-color: rgba(93, 220, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form-meta .icon {
    color: var(--accent-strong);
    font-size: 1rem;
}

.contact-progress {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.contact-progress-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
}

.contact-progress-bar {
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.contact-progress-bar span {
    display: block;
    width: 33%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    transition: width 0.35s ease;
}

.contact-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    min-height: clamp(320px, 40vh, 520px);
}

.contact-step {
    border-radius: calc(var(--radius-md) + 8px);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    grid-area: 1 / 1 / 2 / 2;
    visibility: hidden;
}

.contact-step.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
}

.contact-step-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-step-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.contact-step-controls .btn {
    min-width: 150px;
}

.contact-step-controls [data-step-submit][hidden] {
    display: none;
}

.contact-step-controls [data-step-prev]:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.contact-info p {
    color: var(--muted);
    margin: 1.2rem 0;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 0.6rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    color: var(--muted);
}

.contact-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: var(--liquid-transition);
}

.contact-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(93, 220, 255, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-list .icon {
    margin-right: 0.6rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-list a {
    color: var(--primary);
    font-weight: 600;
}

.map-embed {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.map-embed iframe {
    width: 100%;
    min-height: 320px;
    border: none;
}

.legal-section {
    background: var(--bg-soft);
}

.legal-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: clamp(2rem, 5vw, 3.5rem);
    background: var(--glass-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: grid;
    gap: 2rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.legal-block h3 {
    font-size: 1.35rem;
}

.legal-block p,
.legal-block ul,
.legal-block ol {
    color: var(--muted);
    margin-top: 0.75rem;
}

.legal-note {
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    color: var(--muted);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 1rem;
}

.legal-list--numbered {
    counter-reset: legal-counter;
}

.legal-list--numbered li {
    padding-left: 2.5rem;
    position: relative;
}

.legal-list--numbered li::before {
    counter-increment: legal-counter;
    content: counter(legal-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent);
}

.legal-list--bullets li {
    padding-left: 1.6rem;
    position: relative;
}

.legal-list--bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--muted);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

input,
select,
textarea {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--liquid-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

select {
    appearance: none;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235ddcff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: left center, right 1.2rem center;
    background-size: auto, 14px;
    padding-right: 3rem;
    cursor: pointer;
}

select option {
    background: var(--bg);
    color: var(--primary);
    padding: 0.75rem;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(93, 220, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.3), 0 12px 40px rgba(13, 110, 253, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-grid label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary);
    cursor: pointer;
    transition: var(--liquid-transition);
}

.checkbox-grid label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(93, 220, 255, 0.4);
    transform: translateX(4px);
}

.checkbox-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    cursor: pointer;
}

.form-consent {
    padding-top: 0.5rem;
}

label.checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: var(--liquid-transition);
}

label.checkbox:hover {
    border-color: rgba(93, 220, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

label.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

label.checkbox span {
    color: var(--muted);
    line-height: 1.5;
}

label.checkbox input.has-error + span {
    color: #ff8b8b;
}

label.checkbox span a {
    color: var(--accent);
}

.newsletter-consent {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.form-feedback {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.5rem;
}

.form-feedback.is-error {
    color: #ff8b8b;
}

.form-feedback.is-success {
    color: #7cffb2;
}

input.has-error,
select.has-error,
textarea.has-error {
    border-color: #ff8b8b;
    background: rgba(255, 139, 139, 0.08);
}

.main-footer {
    background: radial-gradient(circle at top, rgba(13, 110, 253, 0.08), transparent 45%), #03050d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 4rem;
}

.footer-cta {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto 3rem;
    padding: clamp(2rem, 2.8vw, 3rem) clamp(2rem, 4vw, 3.5rem);
    border-radius: calc(var(--radius-lg) + 12px);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-cta-text h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0.5rem 0 0.8rem;
}

.footer-cta-text p {
    color: var(--muted);
    max-width: 540px;
}

.footer-cta-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-cta small {
    color: var(--muted);
}

.footer-cta small a {
    color: var(--accent);
}

.footer-container {
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    padding-inline: var(--layout-gutter);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: var(--muted);
    margin: 1rem 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    max-width: clamp(160px, 15vw, 220px);
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-inputs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Performance: defer rendering for below-the-fold blocks */
.content-deferred {
    content-visibility: auto;
    contain: layout paint style;
    contain-intrinsic-size: 600px;
}

@media (max-width: 768px) {
    .content-deferred {
        contain-intrinsic-size: 900px;
    }
}

.newsletter-inputs input {
    flex: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.footer-columns h4 {
    margin-bottom: 0.8rem;
}

.footer-columns ul {
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 0.35rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
}

.footer-socials a {
    margin-left: 0.8rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    color: var(--primary);
}

/* Light theme adjustments */
body[data-theme="light"] .services-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}

body[data-theme="light"] .roi-section {
    background: radial-gradient(circle at 15% 40%, rgba(13, 110, 253, 0.18), transparent 55%),
        linear-gradient(135deg, #ffffff, #e6efff);
}

body[data-theme="light"] .roi-cta {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.15);
}

body[data-theme="light"] .category-block {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .hero-meta div {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .offer-card {
    background: linear-gradient(135deg, #ffffff 0%, #e9f2ff 70%);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
}

body[data-theme="light"] .offer-card .project-image {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(233, 242, 255, 0.95));
}

body[data-theme="light"] .offer-card .project-info {
    background: rgba(255, 255, 255, 0.94);
}

body[data-theme="light"] .offer-card .project-info::before {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .offer-card .badge {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(13, 110, 253, 0.12);
    color: var(--accent);
}

body[data-theme="light"] .offer-pills span {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.05);
    color: #1f2937;
}

body[data-theme="light"] .offer-card .project-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.35), rgba(13, 110, 253, 0.35));
    color: #ffffff;
}

body[data-theme="light"] .service-story {
    background: linear-gradient(160deg, #ffffff 0%, #eff4ff 100%);
}

body[data-theme="light"] .story-panel,
body[data-theme="light"] .story-panel--lead,
body[data-theme="light"] .story-panel--list {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .story-panel p,
body[data-theme="light"] .story-list li strong,
body[data-theme="light"] .story-quote blockquote {
    color: #0f172a;
}

body[data-theme="light"] .story-pillboard span {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.05);
    color: #1f2937;
}

body[data-theme="light"] .story-metrics div {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.03);
}

body[data-theme="light"] .industry-section {
    background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
}

body[data-theme="light"] .industry-card {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .service-longform {
    background: linear-gradient(180deg, #ffffff 0%, #eff4ff 100%);
}

body[data-theme="light"] .longform-grid aside {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .pillars-section,
body[data-theme="light"] .engagement-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}

body[data-theme="light"] .engagement-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .template-stack .reference-card {
    background: linear-gradient(135deg, #ffffff, #e8f1ff);
    border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .faq-accordion details {
    background: rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .faq-accordion details[open] {
    background: rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.35);
}

body[data-theme="light"] .contact-section {
    background: linear-gradient(180deg, #f8fbff 0%, #e7eeff 100%);
}

body[data-theme="light"] .contact-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.15);
}

body[data-theme="light"] .contact-form-meta span {
    border-color: rgba(13, 110, 253, 0.25);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(93, 220, 255, 0.08));
    color: #0f172a;
}

body[data-theme="light"] .contact-list li,
body[data-theme="light"] .contact-step {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .contact-progress-bar {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] input,
body[data-theme="light"] select,
body[data-theme="light"] textarea {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] input:hover,
body[data-theme="light"] select:hover,
body[data-theme="light"] textarea:hover {
    background: #ffffff;
    border-color: rgba(13, 110, 253, 0.4);
}

body[data-theme="light"] input:focus,
body[data-theme="light"] select:focus,
body[data-theme="light"] textarea:focus {
    background: #ffffff;
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25), 0 14px 32px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

body[data-theme="light"] .checkbox-grid label,
body[data-theme="light"] label.checkbox {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] label.checkbox span {
    color: #4b5563;
}

body[data-theme="light"] .case-meta-list span {
    color: #4b5563;
}

body[data-theme="light"] .main-footer {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef2ff 55%, #f6f8ff 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body[data-theme="light"] .footer-cta {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .footer-cta-text p,
body[data-theme="light"] .footer-brand p,
body[data-theme="light"] .footer-columns ul,
body[data-theme="light"] .footer-bottom {
    color: #4b5563;
}

body[data-theme="light"] .footer-columns a,
body[data-theme="light"] .footer-cta small a {
    color: #0f172a;
}

body[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .footer-socials a:hover {
    color: var(--accent-strong);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--primary);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--liquid-transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(93, 220, 255, 0.6);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(13, 110, 253, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-headline .typewriter {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    line-height: 1.15;
}

@media (min-width: 768px) {
    body:not(.page-home) .hero-section {
        min-height: calc(110vh - var(--header-height, 88px));
    }
}

@media (max-width: 1100px) {
    .header-container {
        gap: 1.25rem;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .theme-switcher {
        margin-left: auto;
        order: 3;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 4;
    }

    .main-header.scrolled .header-container {
        justify-content: space-between;
        gap: 1.25rem;
    }

    .main-header.scrolled .header-logo {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        width: auto;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: calc(var(--header-height) + 2.5rem) 0 3rem;
        min-height: clamp(520px, 88vh, 860px);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-proof {
        margin-top: 3rem;
        padding: 2.5rem 0;
    }

    .hero-reference {
        padding: 1.75rem;
    }

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

    .case-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-aside {
        max-width: 600px;
        margin: 0 auto;
    }

    .roi-card {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .footer-container {
        grid-template-columns: 1fr;
    }

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

    .case-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-reader {
        position: relative;
        top: 0;
        min-height: auto;
    }

    .blog-reader-content {
        max-height: none;
        padding-right: 0;
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: calc(var(--header-height) + 2rem) 0 2.5rem;
        min-height: clamp(500px, 90vh, 780px);
    }

    .hero-headline {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
        margin: 1rem 0 1rem;
    }

    .hero-subheadline {
        margin-bottom: 2rem;
    }

    .hero-proof {
        margin-top: 2.5rem;
        padding: 2rem 0;
    }

    .hero-metrics {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .hero-aside {
        max-width: 100%;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-steps {
        min-height: auto;
    }

    .contact-step-controls {
        flex-direction: column;
    }

    .contact-step-controls .btn {
        width: 100%;
    }

    .reference-card {
        grid-template-columns: 1fr;
    }

    .reference-card.reverse .reference-media {
        order: 1;
    }

    .reference-card.reverse .reference-body {
        order: 2;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .hero-section.service-hero .container {
        text-align: left;
    }

    .hero-section.service-hero .hero-buttons {
        justify-content: flex-start;
    }

    .hero-section.service-hero .hero-subheadline {
        margin-inline: 0;
    }
}

@media (max-width: 768px) {

    .reference-card.reverse .reference-body {
        order: 2;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .hero-section.service-hero .container {
        text-align: left;
    }

    .hero-section.service-hero .hero-buttons {
        justify-content: flex-start;
    }

    .hero-section.service-hero .hero-subheadline {
        margin-inline: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 76px;
        --layout-gutter: clamp(1rem, 6vw, 1.5rem);
    }

    .hero-section {
        padding: calc(var(--header-height) + 1.5rem) 0 2rem;
        min-height: clamp(480px, 92vh, 720px);
    }

    .hero-headline {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.15;
        margin: 1rem 0 0.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-proof {
        margin-top: 2rem;
        padding: 1.75rem 0;
    }

    .hero-reference {
        padding: 1.5rem;
    }

    .hero-metrics {
        margin-top: 1.25rem;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .metric-card {
        padding: 1.25rem;
    }

    .roi-output {
        grid-template-columns: 1fr;
    }

    .blog-list .blog-card {
        padding: 1.5rem;
    }

    .blog-reader {
        padding: 1.75rem;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .footer-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

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

    .hero-section {
        padding: calc(var(--header-height) + 1.5rem) 0 2rem;
        min-height: clamp(460px, 95vh, 680px);
    }

    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin: 0.75rem 0 0.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        z-index: 10;
    }

    .hero-proof {
        margin-top: 1.5rem;
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .hero-proof span {
        font-size: 0.9rem;
    }

    .hero-proof-chip {
        padding: 1.25rem 1.5rem;
        min-width: 160px;
    }

    .hero-proof-chip img {
        width: 80px;
        height: 80px;
    }

    .hero-reference {
        padding: 1.25rem;
    }

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

    .reference-stack {
        padding: 1.25rem;
    }

    .reference-card {
        padding: 1.25rem;
    }

    .reference-actions .btn {
        width: 100%;
    }

    .service-grid,
    .project-grid,
    .case-grid,
    .special-grid,
    .testimonial-slider,
    .blog-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .roi-card {
        padding: 2rem;
    }

    .footer-cta {
        padding: 2rem;
    }

    .map-embed iframe {
        min-height: 240px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }

    .hero-case-media {
        min-height: 220px;
    }
}

@media (max-width: 480px) {

    .reference-actions .btn {
        width: 100%;
    }

    .service-grid,
    .project-grid,
    .case-grid,
    .special-grid,
    .testimonial-slider,
    .blog-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .roi-card {
        padding: 2rem;
    }

    .footer-cta {
        padding: 2rem;
    }

    .map-embed iframe {
        min-height: 240px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }

    .hero-case-media {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: calc(var(--header-height) + 1rem) 0 1.5rem;
        min-height: clamp(440px, 96vh, 640px);
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.85rem;
    }

    .hero-headline {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
        margin: 0.5rem 0 0.5rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-proof {
        margin-top: 1.25rem;
        padding: 1.25rem 0;
    }

    .hero-proof-chip {
        padding: 1rem 1.25rem;
        min-width: 140px;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-proof-chip img {
        width: 70px;
        height: 70px;
    }

    .hero-reference {
        padding: 1rem;
    }

    .hero-reference h3 {
        font-size: 1.25rem;
    }

    .hero-reference p {
        font-size: 0.9rem;
    }

    .metric-card strong {
        font-size: 1.4rem;
    }

    .contact-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-card,
    .contact-wrapper,
    .footer-cta {
        padding: 1.5rem;
    }

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

@media (pointer: coarse) {
    body,
    a,
    button,
    .btn,
    summary,
    input,
    select,
    textarea,
    .mobile-menu-toggle {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}


.scroll-reveal {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal[data-scroll-ready="true"] {
    opacity: 0;
    transform: translateY(60px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-slide-left[data-scroll-ready="true"] {
    opacity: 0;
    transform: translateX(-80px);
}

.scroll-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-slide-right[data-scroll-ready="true"] {
    opacity: 0;
    transform: translateX(80px);
}

.scroll-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-scale[data-scroll-ready="true"] {
    opacity: 0;
    transform: scale(0.85);
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-rotate[data-scroll-ready="true"] {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
}

.scroll-rotate.revealed {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.scroll-blur {
    transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
}

.scroll-blur[data-scroll-ready="true"] {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
}

.scroll-blur.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.scroll-flip {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-flip[data-scroll-ready="true"] {
    opacity: 0;
    transform: perspective(1000px) rotateX(-15deg);
}

.scroll-flip.revealed {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
}

.parallax-slow {
    transition: transform 0.1s ease-out;
}

.parallax-medium {
    transition: transform 0.15s ease-out;
}

.parallax-fast {
    transition: transform 0.2s ease-out;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.theme-switcher {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--accent-strong);
    font-size: 1.2rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 10;
}

.theme-switcher:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.4);
}

.theme-switcher:active {
    transform: scale(0.95);
}

.theme-switcher .theme-icon {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.theme-switcher.switching .theme-icon {
    transform: rotate(360deg) scale(0);
}

body[data-theme="light"] .theme-switcher .theme-icon::before {
    content: "\f185";
}

.theme-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform;
}

.theme-ripple.light-ripple {
    background: radial-gradient(circle, 
        rgba(248, 249, 252, 1) 0%,
        rgba(248, 249, 252, 0.95) 30%,
        rgba(248, 249, 252, 0.8) 60%,
        rgba(248, 249, 252, 0) 100%
    );
    box-shadow: 
        0 0 100px 50px rgba(13, 110, 253, 0.3),
        inset 0 0 80px rgba(255, 255, 255, 0.4);
}

.theme-ripple.dark-ripple {
    background: radial-gradient(circle, 
        rgba(1, 5, 19, 1) 0%,
        rgba(1, 5, 19, 0.95) 30%,
        rgba(1, 5, 19, 0.8) 60%,
        rgba(1, 5, 19, 0) 100%
    );
    box-shadow: 
        0 0 100px 50px rgba(93, 220, 255, 0.3),
        inset 0 0 80px rgba(13, 110, 253, 0.3);
}

.theme-ripple.expanding {
    animation: rippleExpand 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.theme-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    will-change: transform, opacity;
}

body[data-theme="light"] .theme-particle {
    background: radial-gradient(circle, var(--accent-strong), var(--accent));
    box-shadow: 0 0 10px var(--accent);
}

body[data-theme="dark"] .theme-particle,
body:not([data-theme]) .theme-particle {
    background: radial-gradient(circle, #5ddcff, #0d6efd);
    box-shadow: 0 0 10px #5ddcff;
}

@media (max-width: 768px) {
    .theme-switcher {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-left: 1rem;
    }
}

.angebote-hero {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 3.5rem);
}

.angebote-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(13, 110, 253, 0.2), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.angebote-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.angebote-hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.4rem);
    margin: 1rem 0 1.25rem;
}

.hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.08);
}

.hero-guide {
    margin-top: 2.5rem;
}

.guide-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.guide-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(13, 110, 253, 0.18);
    color: var(--accent);
}

.service-areas {
    background: rgba(255, 255, 255, 0.015);
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-area-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: rgba(255, 255, 255, 0.03);
}

.service-area-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    background: rgba(13, 110, 253, 0.2);
    color: var(--accent);
}

.service-area-card ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--muted);
}

.service-area-card li .icon {
    color: var(--accent);
    margin-right: 0.35rem;
}

.service-packages {
    background: rgba(255, 255, 255, 0.01);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.package-card-simple {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-card-simple ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--muted);
}

.package-card-simple ul .icon {
    color: var(--accent);
    margin-right: 0.4rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.package-price strong {
    font-size: 1.85rem;
}

.konfigurator-class {
    background: rgba(255, 255, 255, 0.015);
}

.konfigurator-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 5vw, 2.75rem);
    background: rgba(255, 255, 255, 0.03);
}

.konfigurator-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.konfigurator-content li .icon {
    color: var(--accent);
    margin-right: 0.4rem;
}

.konfigurator-mockup {
    display: flex;
    justify-content: center;
}

.mockup-card {
    width: min(320px, 100%);
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(150deg, rgba(13, 110, 253, 0.25), rgba(4, 10, 30, 0.9));
}

.mockup-step {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.mockup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1.25rem 0;
}

.mockup-tags span {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.mockup-next {
    margin-top: 1.25rem;
    text-align: right;
    font-weight: 600;
}

.domain-check .domain-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, 0.03);
}

.domain-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.domain-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

.domain-input-wrapper input {
    flex: 1;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem 1.25rem;
    color: var(--primary);
}

.domain-feedback {
    font-weight: 600;
    color: var(--accent);
}

.domain-tip-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.domain-tip-grid article {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.partner-solutions {
    background: rgba(255, 255, 255, 0.015);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: rgba(255, 255, 255, 0.03);
}

.partner-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.partner-head img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.partner-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--muted);
}

.partner-card strong {
    display: block;
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--glass-border);
    color: var(--muted);
}

@media (max-width: 960px) {
    .guide-card {
        flex-direction: column;
        text-align: left;
    }

    .konfigurator-content {
        grid-template-columns: 1fr;
    }

    .domain-input-wrapper {
        flex-direction: column;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}
.case-hero-grid {
    grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    justify-items: stretch;
}
.case-hero-grid .hero-content {
    text-align: left;
    margin: 0;
    max-width: 100%;
}
.case-hero-grid .hero-headline,
.case-hero-grid .hero-subheadline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.case-hero-grid .hero-buttons {
    justify-content: flex-start;
}

.hero-panel {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.hero-panel-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.hero-panel-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.about-hero {
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.18), transparent 55%);
}

.founder-section {
    background: rgba(255, 255, 255, 0.01);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.25rem;
    align-items: center;
}

.founder-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.05);
}

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

.founder-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.founder-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

.founder-content li .icon {
    color: var(--accent);
}

.founder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.values-section {
    background: rgba(255, 255, 255, 0.015);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-grid article {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(13, 110, 253, 0.18);
    color: var(--accent);
}

.metrics-section {
    background: rgba(255, 255, 255, 0.01);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    text-align: center;
}

.metric-grid article {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
}

.metric-grid strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.testimonial-section {
    background: rgba(255, 255, 255, 0.015);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 1rem;
    color: var(--muted);
}

.testimonial-card p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--muted);
}

.founder-hero {
    background: radial-gradient(circle at top left, rgba(93, 220, 255, 0.14), transparent 55%);
}

.timeline-section,
.expertise-section,
.approach-section {
    background: rgba(255, 255, 255, 0.015);
}

.timeline-grid,
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.timeline-grid article,
.approach-grid article {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.timeline-grid span,
.approach-grid span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--accent);
    color: #050505;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.expertise-grid article {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.expertise-grid ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--muted);
}

.cta-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: clamp(1.75rem, 5vw, 2.75rem);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

body.page-ueber-uns .about-hero,
body.page-ueber-uns .founder-section,
body.page-ueber-uns .values-section,
body.page-ueber-uns .metrics-section,
body.page-ueber-uns .testimonial-section,
body.page-ueber-uns .timeline-section,
body.page-ueber-uns .expertise-section,
body.page-ueber-uns .approach-section {
    background: linear-gradient(180deg, rgba(4, 7, 18, 0.96), rgba(2, 5, 16, 0.98));
}

@media (max-width: 960px) {
    .hero-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-panel-card,
    .value-grid article,
    .metric-grid article,
    .testimonial-card,
    .timeline-grid article,
    .approach-grid article,
    .expertise-grid article {
        padding: 1.25rem;
    }

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

@media (max-width: 640px) {
    .angebote-hero .hero-content {
        text-align: left;
    }

    .hero-guide {
        margin-top: 2rem;
    }

    .package-grid,
    .service-area-grid,
    .partner-grid,
    .domain-tip-grid {
        grid-template-columns: 1fr;
    }

    .konfigurator-content {
        padding: 1.5rem;
    }
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
    body.custom-cursor-ready {
        cursor: none !important;
    }

    body.custom-cursor-ready *,
    body.custom-cursor-ready *::before,
    body.custom-cursor-ready *::after {
        cursor: inherit !important;
    }

    body.custom-cursor-ready a,
    body.custom-cursor-ready button,
    body.custom-cursor-ready .btn,
    body.custom-cursor-ready [role="button"],
    body.custom-cursor-ready [role="link"],
    body.custom-cursor-ready [role="tab"],
    body.custom-cursor-ready [role="slider"],
    body.custom-cursor-ready input,
    body.custom-cursor-ready select,
    body.custom-cursor-ready textarea,
    body.custom-cursor-ready summary,
    body.custom-cursor-ready label,
    body.custom-cursor-ready .back-to-top {
        cursor: none !important;
    }

    body.custom-cursor-ready input[type="range"]::-webkit-slider-thumb,
    body.custom-cursor-ready input[type="range"]::-webkit-slider-runnable-track,
    body.custom-cursor-ready input[type="range"]::-moz-range-thumb,
    body.custom-cursor-ready input[type="range"]::-moz-range-track,
    body.custom-cursor-ready input[type="range"]::-ms-thumb,
    body.custom-cursor-ready input[type="range"]::-ms-track {
        cursor: none;
    }
}

@media (pointer: coarse), (hover: none) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: width 0.25s ease, height 0.25s ease, border 0.25s ease, background 0.25s ease, opacity 0.2s ease;
}

.cursor {
    width: 42px;
    height: 42px;
    background: transparent;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 2px solid transparent;
}

.cursor--visible {
    opacity: 1;
}

.cursor--interactive {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(93, 220, 255, 0.12);
}

.cursor--pressed {
    width: 48px;
    height: 48px;
    border-color: var(--accent-strong, var(--accent));
    background: rgba(93, 220, 255, 0.22);
}

.cursor--interactive.cursor--pressed {
    width: 54px;
    height: 54px;
    background: rgba(93, 220, 255, 0.3);
}

.cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cursor-follower {
    width: 46px;
    height: 46px;
    border: 2px solid var(--bg-soft);
    transform: translate(-50%, -50%);
}

.cursor-follower--visible {
    opacity: 0.35;
}
