:root {
    --brand-blue: #151e5e; 
    --deep-grey: #111111; 
    --deep-black: #000000; 
    --bg-light: #ffffff; 
    --text-hero: #151e5e; 
    --text: #ffffff; 
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #e6d5a7; 
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--brand-blue);
    color: #fff;
    padding: 0.8rem 1.5rem;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
}
body {
    background-color: var(--bg-light);
    color: var(--text-hero);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}
#canvas-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; pointer-events: none;
}
#canvas-container::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    opacity: 0.025;
    pointer-events: none;
    animation: grain 0.5s steps(1) infinite;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
}
@keyframes grain {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-5%, -5%); }
    40%  { transform: translate(3%, -8%); }
    60%  { transform: translate(-7%, 2%); }
    80%  { transform: translate(5%, 6%); }
    100% { transform: translate(0, 0); }
}
.navbar {
    display: flex; justify-content: space-between; padding: 2rem 5%;
    position: fixed; width: 100%; top: 0; z-index: 100;
    background: transparent;
    transition: 0.3s ease;
}
.navbar.scrolled .hamburger .line { background: #fff; }
.logo { 
    font-weight: 800; 
    text-decoration: none; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-size: 1.5rem; 
    transition: color 0.5s ease;
    color: var(--brand-blue);
}
.nav-links a { 
    margin-left: 2rem; 
    text-decoration: none; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
    transition: color 0.5s ease;
    color: var(--brand-blue);
}
.navbar.scrolled .logo { color: #fff; }
.navbar.scrolled .nav-links a { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }
.logo:hover { color: var(--brand-blue); opacity: 0.7; }
.nav-links a:hover { color: var(--brand-blue); opacity: 0.7; }
.hero {
    height: 100svh; 
    display: flex;
    align-items: center;
    position: relative;
}
@supports not (height: 100svh) {
    .hero { height: 100vh; }
}
.hero h1 { 
    font-size: clamp(3.5rem, 9vw, 8rem); 
    line-height: 1; 
    font-weight: 800;
    margin-bottom: 2rem; 
    letter-spacing: -1px;
    color: #151e5e; 
}
.hero h1 span { color: #000000; }
.hero-sub {
    font-size: 1.2rem;
    color: #444;
    max-width: 550px;
    font-weight: 400;
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin-bottom: 3rem;
}
.hero-price-hint {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--accent);
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}
.hero-btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background-color: var(--accent);
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s ease;
    border: 3px solid var(--accent);
    border-radius: 0;
    font-size: 0.95rem;
}
.hero-btn:hover {
    background-color: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: none;
}
.why-us {
    background-color: var(--deep-grey); 
    padding: 10rem 0 5rem;
    position: relative;
    z-index: 2;
    color: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}
.section-header { margin-bottom: 5rem; }
.section-header h2 { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 1rem; color: #fff; font-weight: 900; letter-spacing: -2px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; font-family: 'Courier New', monospace; letter-spacing: 0.5px; }
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px); gap: 2rem;
}
.bento-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 3rem;
    position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: border-color 0.3s ease;
    border-radius: 0;
}
.bento-card:hover {
    border-color: var(--accent);
}
.bento-large { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-num { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.06); position: absolute; top: 1.5rem; right: 2rem; font-family: 'Courier New', monospace; letter-spacing: -2px; line-height: 1; }
.bento-card h3 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.bento-card p { color: var(--text-muted); font-size: 1.1rem; }
.services-hero-wow {
    padding: 200px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.services-hero-wow h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--brand-blue);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.outline-text {
    -webkit-text-stroke: 2px var(--brand-blue);
    color: transparent;
    font-style: italic;
}
.hero-bg-shape {
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(21, 30, 94, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}
.pricing-duality {
    padding-bottom: 8rem;
    background: #fff;
}
.duality-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr; 
    gap: 30px;
    align-items: stretch;
}
.offer-card {
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.premium-offer {
    background: #151e5e; 
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.offer-bg-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(230, 213, 167, 0.1) 0%, rgba(11, 15, 46, 0) 100%);
    z-index: 0;
}
.offer-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; flex-grow: 1; }
.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--brand-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.premium-offer h2 { font-size: 3rem; margin-bottom: 1rem; color: #fff; }
.price-display {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    display: flex; align-items: flex-end; gap: 10px;
}
.price-display .price-prefix { font-size: 1.2rem; opacity: 0.5; margin-bottom: 12px; font-weight: 400; letter-spacing: 1px; }
.price-display .currency { font-size: 2rem; opacity: 0.5; margin-bottom: 10px; }
.price-display .vat { font-size: 1rem; opacity: 0.5; margin-bottom: 15px; font-weight: 400; }
.summary { font-size: 1.2rem; opacity: 0.8; margin-bottom: 3rem; max-width: 400px; }
.offer-extra-note {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 2rem;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
    margin-top: -0.5rem;
}
.offer-extra-note.text-dark {
    border-top-color: rgba(21, 30, 94, 0.1);
}
.tech-specs-list { margin-bottom: 3rem; flex-grow: 1; }
.spec-item { display: flex; align-items: center; gap: 15px; margin-bottom: 1.2rem; font-size: 1.1rem; }
.premium-offer .spec-item svg { stroke: var(--accent); }
.premium-offer .spec-item span { color: #ddd; }
.btn-glow {
    background: var(--accent);
    color: var(--brand-blue);
    padding: 1.2rem 2rem;
    display: inline-flex; justify-content: space-between; align-items: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(230, 213, 167, 0.3);
    margin-top: auto;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(230, 213, 167, 0.5); }
.standard-offer {
    background: #f4f6f8;
    color: var(--brand-blue);
    border: 1px solid #e1e4e8;
}
.badge-light {
    display: inline-block;
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.standard-offer h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.text-dark { color: var(--brand-blue); }
.btn-clean {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 1.2rem 2rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    display: block;
    margin-top: auto;
}
.btn-clean:hover { background: var(--brand-blue); color: #fff; }
.tech-specs-section {
    background: #000;
    color: #0f0; 
    color: #e0e0e0;
    padding: 6rem 0;
    font-family: 'Courier New', Courier, monospace; 
}
.specs-wrapper {
    border: 1px solid #333;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: #0a0a0a;
}
.specs-header h3 { font-size: 2rem; margin-bottom: 0.5rem; letter-spacing: -1px; }
.specs-header p { margin-bottom: 2rem; opacity: 0.6; font-family: var(--font-main); }
.spec-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}
.spec-label { opacity: 0.5; }
.spec-value { font-weight: bold; display: flex; align-items: center; gap: 10px; }
.bar {
    display: inline-block; height: 8px; background: #00ff88;
    width: 50px; border-radius: 2px;
}
.spec-link {
    display: inline-block; margin-top: 2rem;
    color: #fff; text-decoration: underline;
}
.spec-link-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.spec-link-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.lighthouse-scores {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0 1.5rem;
    flex-wrap: wrap;
}
.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.score-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(
        var(--color) calc(var(--score) * 3.6deg),
        rgba(255,255,255,0.08) calc(var(--score) * 3.6deg)
    );
}
.score-circle::before {
    content: '';
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #0a0a0a;
}
.score-num {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color);
    font-family: 'Courier New', Courier, monospace;
}
.score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-family: var(--font-main);
}
.lighthouse-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2.5rem;
    font-family: var(--font-main);
    font-style: italic;
}
.additional-services {
    padding: 8rem 0;
    background: #fff;
}
.section-heading { font-size: 3rem; margin-bottom: 4rem; color: var(--brand-blue); text-align: center; }
.accordion-list { max-width: 900px; margin: 0 auto; }
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-header {
    padding: 2rem 0;
    display: flex; align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.accordion-header:hover { opacity: 0.7; }
.acc-icon { 
    margin-right: 20px; color: var(--brand-blue); 
    background: #f0f0f5; padding: 10px; border-radius: 50%;
}
.accordion-header h3 { font-size: 1.5rem; flex-grow: 1; color: var(--brand-blue); font-weight: 500; }
.acc-price { font-weight: bold; margin-right: 20px; color: var(--brand-blue); }
.acc-trigger { font-size: 2rem; font-weight: 200; transition: 0.3s; }
.accordion-item.active .acc-trigger { transform: rotate(45deg); }
.accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
}
.accordion-item.active .accordion-content { max-height: 300px; }
.acc-inner { padding: 0 0 2rem 70px; color: #666; }
.acc-inner ul { margin: 1rem 0; padding-left: 1.2rem; }
.btn-text { color: var(--brand-blue); font-weight: 700; text-decoration: none; }
@media (max-width: 900px) {
    .duality-grid { grid-template-columns: 1fr; }
    .premium-offer { order: -1; }
    .services-hero-wow h1 { font-size: 3rem; }
    .acc-inner { padding-left: 0; }
}
.work-section {
    background: #000;
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}
.work-header {
    margin-bottom: 4rem;
}
.work-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}
.work-header h2 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -2px;
}
.work-brutal-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-auto-rows: 380px;
    gap: 4px;
}
.work-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}
.work-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #111;
}
.work-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    transition: filter 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.work-card:hover .work-card-bg img {
    filter: grayscale(0%) brightness(0.55);
    transform: scale(1.05);
}
.work-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 60%);
}
.work-card-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    width: 100%;
}
.work-card-type {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
}
.work-card-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    transition: transform 0.4s ease;
}
.work-card:hover .work-card-content h3 {
    transform: translateX(8px);
}
.work-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s, transform 0.3s;
}
.work-card:hover .work-card-cta {
    color: var(--accent);
    transform: translateX(4px);
}
.work-card-cta svg {
    transition: transform 0.3s;
}
.work-card:hover .work-card-cta svg {
    transform: translate(3px, -3px);
}
.work-card-idx {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    z-index: 3;
    font-family: 'Courier New', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    transition: color 0.4s;
    pointer-events: none;
}
.work-card:hover .work-card-idx {
    color: rgba(230,213,167,0.1);
}
@media (max-width: 900px) {
    .work-brutal-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .work-header h2 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}
@media (max-width: 480px) {
    .work-brutal-grid {
        grid-auto-rows: 260px;
        gap: 2px;
    }
    .work-card-content { padding: 1.5rem; }
}
.pricing-split {
    background: #fff;
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}
.pricing-split-header { margin-bottom: 4rem; }
.pricing-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--brand-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}
.pricing-split-header h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: #0a1240;
    letter-spacing: -2px;
}
.pricing-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
}
.price-card {
    position: relative;
    padding: 3.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card-premium {
    background: var(--brand-blue);
    color: #fff;
    border: 1px solid var(--brand-blue);
    box-shadow: 0 8px 40px rgba(21,30,94,0.18);
}
.price-card-premium:hover { box-shadow: 0 16px 50px rgba(21,30,94,0.28); }
.price-card-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(230,213,167,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.price-card-standard {
    background: #fff;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    box-shadow: 0 4px 20px rgba(21,30,94,0.08);
}
.price-card-standard:hover { border-color: var(--brand-blue); box-shadow: 0 12px 40px rgba(21,30,94,0.1); }
.price-card-content { position: relative; z-index: 1; }
.price-card-label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}
.price-card-premium .price-card-label { color: var(--accent); }
.price-card-standard .price-card-label { color: rgba(21,30,94,0.4); }
.price-card-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.price-card-amount .price-prefix {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.4;
    letter-spacing: 1px;
    align-self: flex-end;
    margin-bottom: 8px;
}
.price-card-premium .price-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
}
.price-card-standard .price-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--brand-blue);
}
.price-card-amount .price-currency {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.5;
    align-self: flex-start;
    margin-top: 8px;
}
.price-card-premium .price-vat {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}
.price-card-standard .price-vat {
    display: block;
    font-size: 0.8rem;
    color: rgba(21,30,94,0.3);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}
.price-card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.price-card-premium .price-card-details li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}
.price-card-standard .price-card-details li {
    font-size: 0.95rem;
    color: rgba(21,30,94,0.6);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}
.price-card-details li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
}
.price-card-premium .price-card-details li::before { background: var(--accent); }
.price-card-standard .price-card-details li::before { background: var(--brand-blue); opacity: 0.25; }
.price-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s, transform 0.3s;
    margin-top: auto;
}
.price-card-premium .price-card-cta { color: rgba(255,255,255,0.45); }
.price-card-standard .price-card-cta { color: rgba(21,30,94,0.45); }
.price-card-premium:hover .price-card-cta { color: var(--accent); transform: translateX(6px); }
.price-card-standard:hover .price-card-cta { color: var(--brand-blue); transform: translateX(6px); }
.price-card-cta svg { transition: transform 0.3s; }
.price-card:hover .price-card-cta svg { transform: translate(3px, -3px); }
.price-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    z-index: 10;
    border-radius: 0 0 16px 16px;
    transition: width 0.4s cubic-bezier(.25,.46,.45,.94);
}
.price-card-premium::after { background: var(--accent); }
.price-card-standard::after { background: var(--brand-blue); }
.price-card:hover::after { width: 100%; }
.pricing-split-footer {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pricing-split-footer p { font-size: 0.9rem; color: rgba(21,30,94,0.55); }
.pricing-split-footer a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.pricing-split-footer a:hover { color: #0a1240; }
@media (max-width: 768px) {
    .pricing-split { padding: 5rem 0; }
    .pricing-split-grid { grid-template-columns: 1fr; }
    .price-card { padding: 2.5rem; }
    .pricing-split-header h2 { font-size: clamp(2.5rem, 10vw, 4rem); }
}
.services-section {
    background-color: var(--deep-black); 
    padding: 10rem 0;
    position: relative;
    z-index: 2;
    color: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 1000px;
}
.services-immersive { overflow: hidden; }
.svc-cinema-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-auto-rows: 400px;
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}
.svc-cinema-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: none;
}
.svc-cinema-card.svc-wide { grid-column: span 2; }
.svc-cinema-bg { position: absolute; inset: 0; z-index: 1; }
.svc-cinema-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.35);
    transition: filter 0.5s cubic-bezier(.25,.46,.45,.94), transform 0.5s cubic-bezier(.25,.46,.45,.94);
}
.svc-cinema-card:hover .svc-cinema-bg img {
    filter: grayscale(0%) brightness(0.5);
    transform: scale(1.04);
}
.svc-cinema-bg img[src$=".svg"] {
    filter: none;
}
.svc-cinema-card:hover .svc-cinema-bg img[src$=".svg"] {
    filter: brightness(1.15);
}
.svc-cinema-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: background 0.4s ease;
}
.svc-cinema-card:hover .svc-cinema-overlay {
    background: linear-gradient(0deg, rgba(21,30,94,0.95) 0%, rgba(21,30,94,0.3) 50%, transparent 100%);
}
.svc-cinema-glow { display: none; }
.svc-cinema-content {
    position: relative; z-index: 4;
    padding: 2.5rem; width: 100%;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.svc-cinema-num {
    font-size: 5rem; font-weight: 900;
    color: rgba(255,255,255,0.04);
    font-family: 'Courier New', monospace;
    letter-spacing: -2px;
    position: absolute;
    top: 1.5rem; right: 2rem;
    line-height: 1;
    transition: color 0.4s;
    z-index: 5;
}
.svc-cinema-card:hover .svc-cinema-num { color: rgba(230,213,167,0.1); }
.svc-cinema-content h3 {
    font-size: 2rem; font-weight: 900; line-height: 1.1;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease, color 0.3s;
    color: #fff;
    text-transform: none;
}
.svc-cinema-card.svc-wide .svc-cinema-content h3 { font-size: 2.6rem; letter-spacing: -1px; }
.svc-cinema-card:hover .svc-cinema-content h3 {
    transform: translateX(8px);
    color: #fff;
}
.svc-cinema-content p {
    font-size: 0.9rem; color: rgba(255,255,255,0.55);
    line-height: 1.6; max-width: 500px;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin: 0;
    font-family: 'Courier New', monospace;
}
.svc-cinema-card:hover .svc-cinema-content p {
    max-height: 80px; opacity: 1;
}
.svc-cinema-arrow {
    display: inline-flex; align-items: center;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.2);
    transition: transform 0.3s ease, color 0.3s;
    transform: translateX(-8px); opacity: 0;
}
.svc-cinema-card:hover .svc-cinema-arrow {
    transform: translateX(0); opacity: 1; color: var(--accent);
}
.svc-cinema-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--accent);
    z-index: 10;
    transition: width 0.4s cubic-bezier(.25,.46,.45,.94);
}
.svc-cinema-card:hover::after {
    width: 100%;
}
@media(max-width: 900px) {
    .svc-cinema-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .svc-cinema-card.svc-wide { grid-column: auto; }
    .svc-cinema-content h3,
    .svc-cinema-card.svc-wide .svc-cinema-content h3 { font-size: 1.5rem; }
    .svc-cinema-content p { max-height: none; opacity: 1; }
    .svc-cinema-num { font-size: 3rem; }
}
.services-cta-btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s ease;
    border: 3px solid #fff;
    border-radius: 0;
    font-size: 0.9rem;
}
.services-cta-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: none;
}
.footer-section {
    background-color: var(--brand-blue); 
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
.footer-content {
    display: flex;
    flex-direction: column;
}
.footer-top {
    text-align: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-pre-title { 
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; 
    color: var(--accent); margin-bottom: 2rem; 
}
.big-cta {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    transition: 0.4s ease;
    display: inline-block;
}
.big-cta:hover {
    color: var(--accent); 
    transform: scale(1.02);
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 4rem;
    text-align: left;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    font-size: 1rem;
}
.contact-highlight {
    font-size: 1.2rem !important;
    color: #fff !important;
    font-weight: 600;
}
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.footer-parent-logo {
    display: inline-block;
    margin-top: 1.2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.footer-parent-logo:hover { opacity: 0.8; padding-left: 0; }
.footer-parent-logo img { height: 80px; width: auto; }
.footer-links-row { display: flex; gap: 4rem; margin-top: 5rem; justify-content: center; }
.footer-links-row a { color: #fff; text-decoration: none; font-size: 1.1rem; opacity: 0.75; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-row a:hover { opacity: 1; color: var(--accent); }
.legal { 
    margin-top: 6rem; 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem; 
    width: 100%; 
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.legal a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.legal a:hover { color: #fff; }
.page-privacy {
    padding-top: 150px;
    padding-bottom: 100px;
    background: var(--bg-light);
    color: #000;
}
.page-services {
    background-color: var(--bg-light);
    padding-bottom: 10vh; 
}
.price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.vat {
    font-size: 1rem;
    opacity: 0.6;
}
.desc {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--brand-blue);
}
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
    background: #fff;
    width: 90%; max-width: 1000px;
    max-height: 90vh; overflow-y: auto;
    padding: 3rem;
    border-radius: 10px;
    position: relative;
    color: #000;
}
.close-modal {
    position: absolute; top: 1rem; right: 1.5rem;
    font-size: 2rem; border: none; background: none; cursor: pointer;
}
.templates-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; margin-top: 2rem;
}
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-content h1 { font-size: 3rem; margin-bottom: 3rem; color: var(--brand-blue); }
.privacy-content h2 { font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem; color: var(--brand-blue); border-bottom: 1px solid #ddd; padding-bottom: 10px; }
.privacy-content p { margin-bottom: 1rem; color: #444; }
.privacy-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.privacy-content li { margin-bottom: 0.5rem; color: #444; }
.privacy-content a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px; }
.privacy-content a:hover { color: #0a1240; }
.cookie-table {
    width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem;
    font-size: 0.9rem; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden;
}
.cookie-table th, .cookie-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid #e0e0e0; }
.cookie-table th { background: var(--brand-blue); color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.cookie-table td { color: #444; vertical-align: top; }
.cookie-table code { background: #f0f0f0; padding: 2px 6px; border-radius: 3px; font-size: 0.85rem; }
.container { width: 90%; max-width: 1400px; margin: 0 auto; }
.btn {
    display: inline-block; padding: 1rem 3rem; border: 2px solid var(--brand-blue);
    color: var(--brand-blue); text-decoration: none; margin-top: 2rem; transition: 0.2s;
    background: transparent; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 700; font-size: 0.9rem; border-radius: 0;
}
.btn:hover { background: var(--brand-blue); color: #fff; }
.transition-curtain {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--brand-blue);
    transform: translateY(110%); z-index: 9999; pointer-events: none;
    will-change: transform;
}
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-large, .bento-tall { grid-column: auto; grid-row: auto; min-height: 300px; }
    .footer-links-row { flex-direction: column; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-col a:hover { padding-left: 0; opacity: 0.7; }
    .legal { flex-direction: column; text-align: center; }
}
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 90; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.5s; }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-links { display: flex; flex-direction: column; text-align: center; gap: 2rem; }
.mobile-links a { font-size: 3rem; text-decoration: none; color: var(--brand-blue); font-weight: 900; transform: translateY(50px); opacity: 0; transition: 0.5s; }
.hamburger { display: none; cursor: pointer; z-index: 101; width: 30px; height: 20px; position: relative; }
.line { width: 100%; height: 2px; background: var(--brand-blue); position: absolute; transition: 0.3s; }
.line:first-child { top: 0; }
.line:last-child { bottom: 0; }
.hamburger.active .line:first-child { transform: rotate(45deg); top: 9px; }
.hamburger.active .line:last-child { transform: rotate(-45deg); bottom: 9px; }
@media (max-width: 768px) { .desktop-only { display: none; } .hamburger { display: block; } }
@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 5%;
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .navbar.scrolled {
        background: rgba(5, 5, 5, 0.45);
    }
    .navbar.menu-open {
        background: #fff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .navbar.menu-open .logo { color: var(--brand-blue) !important; }
    .navbar.menu-open .hamburger .line { background: var(--brand-blue) !important; }
    .template-detail-page { padding-top: 140px; }
    .page-contact { padding-top: 140px; }
    .page-privacy { padding-top: 140px; }
}
@media (max-width: 768px) {
    .specs-wrapper {
        padding: 1.5rem;
    }
    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    .spec-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 0.2rem;
    }
    .spec-value {
        width: 100%;
        font-size: 1rem;
        display: flex;
        justify-content: space-between; 
    }
    .bar {
        max-width: 30px;
    }
    .lighthouse-scores {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 2rem;
    }
}
.modal-content {
    background: #f4f6f8; 
    padding: 0; 
    width: 95%;
    max-width: 1200px; 
    border-radius: 20px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    max-height: 90vh; 
}
.modal-header {
    padding: 2rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 10;
}
.modal-body {
    padding: 2rem;
    overflow-y: auto; 
}
.template-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    padding-bottom: 20px;
}
.template-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column; 
    height: 100%;
}
.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 30, 94, 0.15);
    border-color: var(--brand-blue);
}
.template-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9; 
    background: #f4f6f8;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}
.template-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.template-card:hover .template-thumb-img {
    transform: scale(1.05); 
}
.template-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}
.template-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 10px;
}
.template-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0;
    line-height: 1.2;
}
.badge-popular {
    display: inline-block;
    background: var(--accent);
    color: var(--brand-blue);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}
.template-card .badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    margin-left: 0;
}
.template-price { 
    background: var(--brand-blue); 
    color: #fff; 
    padding: 6px 12px; 
    border-radius: 6px; 
    font-weight: 700; 
    font-size: 0.9rem;
    white-space: nowrap; 
}
.template-desc { 
    font-size: 0.95rem; 
    color: #666; 
    margin-bottom: 1.5rem; 
    line-height: 1.5;
    flex-grow: 1; 
}
.btn-select-template {
    display: block; 
    width: 100%; 
    padding: 1rem;
    text-align: center; 
    background: transparent; 
    border: 2px solid var(--brand-blue); 
    color: var(--brand-blue);
    font-weight: 700; 
    text-transform: uppercase; 
    text-decoration: none;
    border-radius: 6px; 
    transition: 0.3s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-select-template:hover { 
    background: var(--brand-blue); 
    color: #fff; 
}
@media (max-width: 768px) {
    .template-showcase-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}
.close-modal {
    position: static; 
    font-size: 2.5rem; line-height: 0.5; color: #000;
}
.page-articles {
    background: #fff;
    min-height: 100vh;
}
.articles-hero {
    padding: 160px 0 80px;
    background: #050505;
    text-align: center;
    color: #fff;
}
.articles-meta {
    color: var(--accent);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.08);
    padding: 5px 12px;
    border-radius: 4px;
}
.articles-hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
    color: #fff;
}
.articles-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}
.page-articles .navbar .logo,
.page-articles .navbar .nav-links a { color: #fff !important; }
.page-articles .hamburger .line { background: #fff !important; }
.page-articles .navbar .nav-links a:hover { color: var(--accent) !important; }
.articles-list {
    padding: 5rem 0 6rem;
}
.articles-feed {
    max-width: 1100px;
    margin: 0 auto;
}
.feed-item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: all 0.35s ease;
    position: relative;
}
.feed-item:first-child { border-top: 1px solid #e0e0e0; }
a.feed-item:hover { padding-left: 1rem; }
a.feed-item:hover .feed-item-num { color: var(--brand-blue); }
a.feed-item:hover h2 { color: var(--brand-blue); }
a.feed-item:hover .feed-arrow { opacity: 1; transform: translateX(0); color: var(--brand-blue); }
.feed-item-num {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #bbb;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.feed-item-body { flex: 1; }
.feed-tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.6rem;
}
.feed-tag-soon { color: #999; }
.feed-item h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
    transition: color 0.3s;
    margin-bottom: 0.4rem;
}
.feed-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #888;
    max-width: 600px;
}
.feed-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #aaa;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.feed-arrow {
    color: #ccc;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    flex-shrink: 0;
}
.feed-item-soon {
    opacity: 0.4;
    cursor: default;
}
.feed-item-soon .feed-item-num { color: #ddd; }
.article-hover-preview {
    position: fixed;
    pointer-events: none;
    z-index: 999;
    width: 320px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.article-hover-preview.visible {
    opacity: 1;
    transform: scale(1);
}
.article-hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .feed-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 2rem 0;
    }
    .feed-item-num { display: none; }
    .feed-item-meta { flex-direction: row; gap: 1rem; }
    .feed-arrow { display: none; }
    .article-hover-preview { display: none; }
    .articles-hero { padding: 140px 0 60px; }
}
.page-contact {
    min-height: 100vh;
    background: #050505; 
    color: #e0e0e0;
    padding-top: 120px;
    padding-bottom: 50px;
}
.page-contact .navbar .logo,
.page-contact .navbar .nav-links a {
    color: #fff !important;
}
.page-contact .hamburger .line {
    background: #fff !important;
}
.page-contact .navbar .nav-links a:hover {
    color: var(--accent) !important;
}
.contact-greeting {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto 4rem;
    text-align: center;
}
.contact-greeting h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}
.contact-greeting p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}
.contact-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}
.contact-editor {
    background: #1e1e1e; 
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #333;
}
.editor-header {
    background: #252526;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}
.dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.filename { margin-left: 15px; font-size: 0.9rem; color: #888; }
.editor-body {
    padding: 2rem;
    color: #d4d4d4;
    font-size: 1.1rem;
    line-height: 1.8;
}
.code-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.line-num {
    color: #555;
    margin-right: 20px;
    user-select: none;
    font-size: 0.9rem;
    min-width: 20px;
}
.keyword { color: #569cd6; } 
.var-name { color: #4ec9b0; } 
.prop { color: #9cdcfe; } 
.code-form input, 
.code-form textarea, 
.code-form select {
background-color: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #ce9178; 
    font-family: inherit;
    font-size: inherit;
    padding: 0 5px;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    outline: none;
    transition: 0.3s;
}
.code-form textarea {
    width: 100%;
    margin-top: 10px;
    color: #ce9178;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 4px;
}
.code-form input:focus,
.code-form textarea:focus,
.code-form select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}
.code-form input::placeholder,
.code-form textarea::placeholder {
    color: #666;
    font-style: italic;
}
.code-form select {
    color: #ce9178; 
    cursor: pointer;
}
.code-form select option {
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px;
}
.privacy-row .comment{color:#6a9955}.privacy-row .comment a{color:#6a9955;text-decoration:underline;text-decoration-color:var(--accent);text-underline-offset:3px;transition:color .2s}.privacy-row .comment a:hover{color:var(--accent)}
.action-row { margin-top: 2rem; }
.btn-compile {
    background: #27c93f; 
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.btn-compile:hover {
    background: #20a032;
    box-shadow: 0 0 15px rgba(39, 201, 63, 0.4);
}
#formMessage { margin-top: 1rem; font-weight: bold; }
.msg-success, .form-success { color: #27c93f; }
.msg-error, .form-error { color: #ff5f56; }
.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 600px;
}
.info-group .label {
    font-family: 'Courier New', monospace;
    color: #666;
    margin-bottom: 1rem;
}
.big-link {
    display: block;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 2rem;
    transition: 0.3s;
}
.big-link.phone { font-size: clamp(2rem, 3vw, 3rem); color: #888; }
.big-link:hover { color: var(--accent); transform: translateX(20px); }
.server-status {
    background: #111;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.status-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 2rem;
}
.status-indicator {
    width: 10px; height: 10px; background: #0f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #0f0;
    animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.server-status h3 { font-family: 'Courier New', monospace; font-size: 1rem; color: #fff; margin: 0; }
.visual-map {
    height: 200px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.radar-circle {
    position: absolute;
    border: 1px solid var(--brand-blue);
    border-radius: 50%;
    opacity: 0.3;
}
.c1 { width: 50px; height: 50px; animation: pulse 3s infinite; }
.c2 { width: 120px; height: 120px; animation: pulse 3s infinite 0.5s; }
.c3 { width: 220px; height: 220px; animation: pulse 3s infinite 1s; }
@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.1; }
    50% { opacity: 0.4; border-color: var(--accent); }
    100% { transform: scale(1.2); opacity: 0; }
}
.map-text {
    text-align: center;
    z-index: 2;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 0 20px #000;
}
.map-text small { font-size: 0.8rem; font-family: 'Courier New', monospace; color: var(--accent); display: block; margin-top: 5px; }
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info-panel { min-height: auto; }
    .big-link { font-size: 3rem; }
    .map-text { font-size: 1.2rem; }
}
@media (max-height: 800px) and (min-width: 769px) {
    .navbar { padding: 1rem 5%; }
    .hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
    .hero-sub { font-size: 1.1rem; }
    .hero-price-hint { font-size: 1rem; }
    .hero { height: 100vh; }
    .services-hero-wow { padding: 120px 0 60px; }
    .services-hero-wow h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
    .contact-greeting h1 { font-size: clamp(3rem, 7vw, 5rem); }
    .contact-greeting { margin: 0 auto 2rem; }
    .page-contact { padding-top: 90px; }
    .big-cta { font-size: clamp(2.5rem, 5vw, 4rem); }
    .section-header h2 { font-size: 2.5rem; }
    .section-heading { font-size: 2.2rem; margin-bottom: 2.5rem; }
}
@media (max-height: 700px) and (min-width: 769px) {
    .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
    .services-hero-wow h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
    .services-hero-wow { padding: 100px 0 40px; }
    .contact-greeting h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
    .page-contact { padding-top: 80px; }
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 99998;
    opacity: 0.4;
    mix-blend-mode: overlay;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
@media (max-width: 900px) {
    html.modal-open,
    html.modal-open body {
        overflow: hidden !important;
        height: 100% !important;
    }
    .modal-overlay {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 9999999 !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .modal-overlay.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .modal-overlay .modal-content {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    .modal-overlay .modal-header {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 10000000 !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .modal-overlay .modal-body {
        padding: 20px !important;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    .modal-overlay .template-showcase-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .modal-overlay .template-card {
        margin-bottom: 0 !important;
        border: 1px solid #eee !important;
        box-shadow: none !important;
        width: 100% !important;
    }
}
.template-detail-page {
    background: #fff;
    padding-top: 120px;
}
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.back-link:hover { color: var(--brand-blue); transform: translateX(-5px); }
.template-hero {
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}
.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}
.hero-text { flex: 1; }
.template-badge {
    background: var(--brand-blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.template-hero h1 {
    font-size: 3.5rem;
    margin: 1rem 0;
    color: var(--brand-blue);
    line-height: 1.1;
}
.template-hero .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}
.template-hero .price .vat { font-size: 1rem; color: #888; font-weight: 400; }
.template-hero .desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}
.policy-box {
    flex: 0 0 350px;
    background: #f9f9fb;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--accent); 
    padding: 2rem;
    border-radius: 8px;
}
.policy-box h3 { margin-bottom: 1.5rem; color: var(--brand-blue); font-size: 1.2rem; }
.policy-item {
    display: flex; gap: 15px; margin-bottom: 1.5rem;
}
.policy-item:last-child { margin-bottom: 0; }
.policy-item .icon {
    font-size: 1.5rem;
    font-weight: bold;
}
.policy-item .check { color: #27c93f; } 
.policy-item .time { color: var(--brand-blue); }
.policy-item .text { font-size: 0.95rem; color: #555; line-height: 1.5; }
.policy-item strong { color: #000; display: block; margin-bottom: 4px; }
.highlight-price { 
    background: var(--brand-blue); color: #fff; 
    padding: 2px 6px; border-radius: 4px; font-weight: bold; font-size: 0.9rem; 
}
.device-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f5 40%, #e8e8f0 100%);
    overflow: hidden;
    position: relative;
}
.device-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21,30,94,0.1), transparent);
}
.showcase-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.showcase-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 4rem;
    font-style: italic;
}
.showcase-note a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: underline;
}
.showcase-stage {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5rem;
    flex-wrap: wrap;
    perspective: 1200px;
}
.device-label-new {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.label-icon { display: flex; align-items: center; opacity: 0.6; }
.device-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}
.macbook-wrap:hover .desktop-glow,
.iphone-wrap:hover .mobile-glow { opacity: 1; }
.desktop-glow {
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(21,30,94,0.15) 0%, transparent 70%);
    bottom: -50px; left: 50%; transform: translateX(-50%);
}
.mobile-glow {
    width: 250px; height: 350px;
    background: radial-gradient(ellipse, rgba(230,213,167,0.2) 0%, transparent 70%);
    bottom: -30px; left: 50%; transform: translateX(-50%);
}
.macbook-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    flex-shrink: 0;
}
.macbook {
    transform-style: preserve-3d;
    will-change: transform;
}
.macbook-lid {
    position: relative;
}
.macbook-bezel {
    background: #1d1d1f;
    border-radius: 14px 14px 0 0;
    padding: 8px 8px 0 8px;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 -1px 0 #0a0a0a;
}
.macbook-notch {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 130px; height: 24px;
    background: #1d1d1f;
    border-radius: 0 0 12px 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notch-cam {
    width: 6px; height: 6px;
    background: radial-gradient(circle, #1a3a1a 40%, #0d0d0f 70%);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,80,0,0.3);
}
.macbook-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #000;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.macbook-screen .device-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.screen-reflection {
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.03) 45%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.03) 55%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 3;
    animation: reflectionSweep 6s ease-in-out infinite;
}
@keyframes reflectionSweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35);
    cursor: pointer;
    z-index: 4;
    transition: opacity 0.5s ease, background 0.5s ease;
}
.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}
.video-overlay:hover {
    background: rgba(0,0,0,0.2);
}
.play-ring {
    width: 64px; height: 64px;
    transition: transform 0.3s ease;
}
.video-overlay:hover .play-ring {
    transform: scale(1.15);
}
.video-overlay.playing .play-ring { display: none; }
.macbook-base {
    position: relative;
}
.macbook-hinge {
    height: 6px;
    background: linear-gradient(180deg, #2a2a2c 0%, #3a3a3c 40%, #c0c0c4 50%, #a0a0a4 100%);
    border-radius: 0 0 2px 2px;
    margin: 0 2px;
}
.macbook-bottom {
    height: 14px;
    background: linear-gradient(180deg, #b8b8bc 0%, #c8c8cc 30%, #d4d4d8 100%);
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.5);
}
.macbook-indent {
    width: 60px; height: 4px;
    background: linear-gradient(180deg, #a0a0a4, #b8b8bc);
    border-radius: 0 0 4px 4px;
}
.iphone-wrap {
    position: relative;
    width: 100%;
    max-width: 260px;
    flex-shrink: 0;
}
.iphone {
    transform-style: preserve-3d;
    will-change: transform;
}
.iphone-frame {
    position: relative;
    background: linear-gradient(145deg, #78787c 0%, #a0a0a4 10%, #c2c2c6 25%, #b8b8bc 50%, #98989c 75%, #6e6e72 100%);
    border-radius: 42px;
    padding: 3px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.25),
        0 8px 20px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.2);
}
.iphone-btn-silent {
    position: absolute;
    left: -2.5px; top: 100px;
    width: 3px; height: 20px;
    background: linear-gradient(90deg, #888, #aaa);
    border-radius: 2px 0 0 2px;
}
.iphone-btn-volup {
    position: absolute;
    left: -2.5px; top: 140px;
    width: 3px; height: 34px;
    background: linear-gradient(90deg, #888, #aaa);
    border-radius: 2px 0 0 2px;
}
.iphone-btn-voldown {
    position: absolute;
    left: -2.5px; top: 184px;
    width: 3px; height: 34px;
    background: linear-gradient(90deg, #888, #aaa);
    border-radius: 2px 0 0 2px;
}
.iphone-btn-power {
    position: absolute;
    right: -2.5px; top: 150px;
    width: 3px; height: 54px;
    background: linear-gradient(270deg, #888, #aaa);
    border-radius: 0 2px 2px 0;
}
.iphone-screen-area {
    position: relative;
    background: #000;
    border-radius: 39px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
}
.iphone-screen-area .device-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.mobile-reflection {
    animation-duration: 8s;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255,255,255,0.04) 45%,
        rgba(255,255,255,0.07) 50%,
        rgba(255,255,255,0.04) 55%,
        transparent 70%
    );
}
.fullscreen-btn {
    position: absolute;
    bottom: 10px; right: 10px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.macbook-screen:hover .fullscreen-btn,
.iphone-screen-area:hover .fullscreen-btn {
    opacity: 1;
}
.fullscreen-btn:hover {
    background: rgba(21,30,94,0.8);
    transform: scale(1.1);
}
.video-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    cursor: pointer;
}
.video-lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.video-lightbox video {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    object-fit: contain;
}
.video-lightbox .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 2;
}
.video-lightbox .lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}
.iphone-home-bar {
    position: absolute;
    bottom: 8px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    z-index: 10;
}
@media (max-width: 1024px) {
    .showcase-stage { gap: 3rem; }
    .macbook-wrap { max-width: 560px; }
    .iphone-wrap { max-width: 220px; }
}
@media (max-width: 768px) {
    .device-showcase { padding: 5rem 0; }
    .showcase-stage {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .macbook-wrap { max-width: 100%; }
    .iphone-wrap { max-width: 200px; }
    .showcase-subtitle { margin-bottom: 2.5rem; font-size: 1rem; }
    .macbook-notch { width: 80px; height: 16px; }
    .notch-cam { width: 4px; height: 4px; }
}
.template-features { padding: 6rem 0; background: #fff; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.feature-card h3 { color: var(--brand-blue); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.feature-card p { color: #666; }
.cta-section { padding: 6rem 0; text-align: center; background: #f4f6f8; }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--brand-blue); }
.cta-section p { margin-bottom: 2rem; color: #555; }
.big-btn { font-size: 1.2rem; padding: 1.5rem 3rem; }
::selection {
    background: #151e5e; 
    color: #ffffff;      
}
::-moz-selection {
    background: #151e5e;
    color: #ffffff;
}
@media (max-width: 900px) {
    .hero-flex { flex-direction: column; gap: 2rem; }
    .policy-box { width: 100%; }
    .template-hero h1 { font-size: 2.5rem; }
    .preview-grid { flex-direction: column; align-items: center; }
}
.template-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
    transition: transform 0.5s ease;
}
.template-card:hover .template-thumb-img {
    transform: scale(1.05); 
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .screen-reflection,
    .mobile-reflection,
    #canvas-container::after {
        animation: none !important;
    }
    .radar-circle {
        animation: none !important;
        opacity: 0.2;
    }
    .status-indicator {
        animation: none !important;
    }
}
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
:focus:not(:focus-visible) {
    outline: none;
}
.radar-circle {
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.transition-curtain {
    backface-visibility: hidden;
}
.svc-cinema-bg img,
.work-card-bg img {
    will-change: transform, filter;
}
@media (pointer: coarse) {
    .hero-btn,
    .btn,
    .btn-glow,
    .btn-clean,
    .btn-compile,
    .btn-select-template,
    .services-cta-btn,
    .accordion-header {
        min-height: 48px;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #0a1240;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(calc(100% + 40px));
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), visibility 0.4s;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    visibility: hidden;
}
.cookie-banner.visible { transform: translateY(0); visibility: visible; }
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}
.cookie-banner-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.cookie-btn {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}
.cookie-btn-accept {
    background: #fff;
    color: #0a1240;
}
.cookie-btn-accept:hover { background: var(--accent); color: #0a1240; }
.cookie-btn-reject {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.18); }
.cookie-btn-settings {
    background: transparent;
    color: rgba(255,255,255,0.5);
    padding: 0.65rem 0.75rem;
}
.cookie-btn-settings:hover { color: #fff; }
.cookie-btn-save {
    background: var(--accent);
    color: #0a1240;
    margin-top: 0.75rem;
}
.cookie-btn-save:hover { background: #fff; }
.cookie-settings {
    display: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-settings.open { display: block; }
.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}
.cookie-category + .cookie-category {
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cookie-category-info strong {
    color: #fff;
    font-size: 0.9rem;
    display: block;
}
.cookie-category-info span {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    line-height: 1.4;
}
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 1rem;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    transition: 0.3s;
}
.cookie-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-slider {
    background: var(--accent);
}
.cookie-toggle input:checked + .cookie-slider::before {
    transform: translateX(20px);
}
.cookie-toggle-disabled {
    opacity: 0.5;
}
.cookie-toggle-disabled .cookie-slider {
    cursor: not-allowed;
    background: rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
    .cookie-banner-inner { padding: 1.2rem 1rem; }
    .cookie-banner-actions { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
    .cookie-btn-settings { order: 3; }
}