:root {
    --background: #010101;
    --background-light: #101010;
    --background-light2: #090909;
    --background-lighter: #1a1a1a;
    --background-transparent-25: #00000033;
    --background-transparent-50: #00000077;
    --background-transparent-75: #000000bb;
    --background-transparent-90: #000000dd;
    --text: #fff;
    --text-dark: #a0a0a0;
    --accent: #7b45f0;
    --accent-dark: #522db3;
    --accent-darker: #291759;
    --glass: rgba(255, 255, 255, .06);
    --shadow: 0 10px 30px rgba(0, 0, 0, .5);
    --color-input-bg: #2b2b2b;
    --color-input-border: #444;
    --color-placeholder: #777;
    --font-normal: "Roboto", sans-serif;
    --font-header: "Exo 2", sans-serif;
}

#s1 { --bg-img: url('/images/s1.webp'); }
#s2 { --bg-img: url('/images/sf.webp'); }
#s3 { --bg-img: url('/images/s2.webp'); }
#k1 { --bg-img: url('/images/k1.webp'); }
#k2 { --bg-img: url('/images/k2.webp'); }
#k3 { --bg-img: url('/images/k3.webp'); }
#u1 { --bg-img: url('/images/u1.webp'); }
#u2 { --bg-img: url('/images/u2.webp'); }
#u3 { --bg-img: url('/images/u3.webp'); }
#se1 { --bg-img: url('/images/se1.webp'); }
#se2 { --bg-img: url('/images/se2.webp'); }
#se3 { --bg-img: url('/images/se3.webp'); }
#a1 { --bg-img: url('/images/a0.webp'); }
#a2 { --bg-img: url('/images/a1.webp'); }
#a3 { --bg-img: url('/images/a3.webp'); }

html { scroll-behavior: smooth; -webkit-user-select: none; -ms-user-select: none; user-select: none; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-normal); }
body { line-height: 1.6; background-color: var(--background); scroll-margin-top: 120px; overflow-x: hidden; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--text-dark); border-radius: 50px; }

#page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--background); z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease-out, visibility 0.6s ease-out; }
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; width: 220px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-logo { max-width: 150px; height: auto; animation: pulseLogo 1.5s infinite alternate ease-in-out; }

.reveal.fade-up { opacity: 0; transform: translateY(40px); transition-duration: 0.8s; }
.reveal.fade-up.visible { opacity: 1; transform: translateY(0); }
.reveal.fade-side { opacity: 0; transform: translateX(40px); transition-duration: 0.8s; }
.reveal.fade-side.visible { opacity: 1; transform: translateX(0); }
.reveal.fade-down { opacity: 0; transform: translateY(-40px); transition-duration: 0.8s; }
.reveal.fade-down.visible { opacity: 1; transform: translateY(0); }

.section_name { width: 100%; margin: auto; text-align: center; background-color: var(--background); color: var(--text); height: auto; padding: 80px 0; }
.section_name h2 { font-family: var(--font-header); font-size: 42px; text-transform: uppercase; }
.section_name h2 .highlight { display: inline-block; white-space: nowrap; }
.section_name .lead { color: var(--text-dark); text-transform: uppercase; letter-spacing: .15em; font-size: 14px; }
.highlight { font-family: var(--font-header); background: linear-gradient(45deg, var(--accent), #b48bf7); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; }

.btn { cursor: pointer; position: relative; padding: 10px 20px; border-radius: 50px; border: 2px solid var(--glass); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; background: var(--accent); color: var(--text); overflow: hidden; box-shadow: 0 0 18px 3px var(--accent-darker); transition: all 0.2s ease-in; display: inline-flex; justify-content: center; align-items: center; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 10vh; background: var(--background-transparent-75); backdrop-filter: blur(0px); color: var(--text); display: flex; justify-content: flex-start; align-items: center; padding: 0 40px; z-index: 9999; box-sizing: border-box; transition: transform 0.4s ease-in-out, backdrop-filter 0.3s ease; }
.navbar .nav-logo { height: 45px; width: auto; }
.navbar .nav-links-group { height: 100%; align-items: center; display: flex; margin: auto; position: relative; }
.navbar .nav-link { color: var(--text-dark); letter-spacing: 1px; font-size: 14px; transition: color 0.3s ease; position: relative; text-transform: uppercase; padding: 10px 15px; }
.navbar .nav-link.active { color: var(--text); }
.navbar .nav-btn-custom { font-size: 12px; border: solid 2px var(--accent); display: flex; align-items: center; justify-content: center; color: var(--text); }

.sidebar { position: fixed; top: 0; bottom: 0; width: 80px; color: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 20px 0; z-index: 1000; box-sizing: border-box; right: 0; }
.navbar-socials { position: relative; top: 40%; transform: translate(0%, -25%); display: flex; flex-direction: column; align-items: center; gap: 15px; }
.navbar-socials a { color: var(--text); font-size: 20px; opacity: 0.7; transition: all 0.3s ease; }
.rotated-text { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); }

.hero { background-image: url('/images/hero_bgs.webp'); background-attachment: fixed; background-size: cover; background-position: center; overflow: hidden; position: relative; height: 90vh; display: flex; justify-content: center; align-items: center; color: var(--text); clip-path: inset(0); background-color: transparent; }
.overlay { z-index: 1; position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0px -60px 70px 1px var(--background) inset; background-color: var(--background-transparent-50); }
.hero h1 { padding: 0px; font-size: 62px; line-height: 1.1; text-transform: uppercase; font-family: var(--font-header); margin: 10px 0; text-align: center; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-weight: bold; padding: 20px; font-size: 20px; }
#hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-color: transparent; }

.promo-section { display: flex; justify-content: center; align-items: flex-start; }
.promo-container { position: relative; text-align: center; padding: 2vh; width: 80%; height: auto; margin: auto; border-radius: 16px; }
.text-box { flex: 0 0 100%; padding: 20px; }
.text-box p { margin: 10px 0; font-size: 20px; color: var(--text); letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }

.hero-buttons-group { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.hero-buttons-group .btn-auto { width: auto !important; margin: 0 !important; }
.hero-buttons-group .btn-secondary { background: var(--background-light2); box-shadow: 0 0 18px 3px var(--background); color: var(--text); border: 2px solid var(--accent); }

.hero-block { position: absolute; bottom: 0; left: 30%; transform: translateX(-50%); margin-bottom: 2vh; height: auto; width: 40%; text-align: center; z-index: 10; }
.hero-block .stats-container { display: flex; justify-content: space-around; gap: 10px; width: 100%; padding: 2vh; background-color: transparent; margin-bottom: 10px; }
.hero-block .stat-item, .stat-item span { flex: 1; text-align: center; padding: 0; border-right: none; font-size: 36px; font-weight: bold; color: var(--text); font-family: var(--font-header); }
.hero-block .stat-item p { font-size: 13px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }

.scroll-banner { width: 100%; height: 10vh; display: flex; overflow: hidden; position: relative; background: var(--background); z-index: 0; font-style: italic; }
.scroll-banner::before, .scroll-banner::after { content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2; pointer-events: none; }
.scroll-banner::before { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.scroll-banner::after { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.scroll-track { display: flex; width: max-content; animation: scroll-loop 40s linear infinite; font-size: 18px; color: var(--text); }
@keyframes scroll-loop { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}
.scroll-content {
    display: flex;align-items: center;white-space: nowrap;min-width: 100vw; 
}
.scroll-content span {margin-right: 15px;}
.split-screen-section { display: flex; flex-wrap: wrap; width: 100%; min-height: 80vh; position: relative; }
.split-col { flex: 1; min-width: 300px; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px; overflow: hidden; }
.split-col:last-child { border-right: none; }
.split-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1; }
.split-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--background-transparent-50); transition: background 0.4s ease; z-index: 2; }
.split-content { position: relative; z-index: 3; max-width: 400px; backdrop-filter: blur(2px); background-color: var(--background-transparent-50); border-radius: 25px; padding: 20px; }
.split-content h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); margin-bottom: 15px; }
.split-content h2 { font-family: var(--font-header); font-size: 32px; text-transform: uppercase; line-height: 1.2; color: var(--text); margin-bottom: 20px; }
.split-content p { font-size: 15px; color: var(--text-dark); line-height: 1.6; margin-bottom: 30px; }

.highlight-section { background: var(--background); color: var(--text); }
.highlight-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; width: 100%; }
.highlight-item:nth-child(1), .highlight-item:nth-child(2), .highlight-item:nth-child(3) { grid-column: span 2; }
.highlight-item:nth-child(4), .highlight-item:nth-child(5) { grid-column: span 3; }
.highlight-item { display: flex; height: auto; overflow: hidden; border-radius: 16px; border: 1px solid transparent; transition: 0.3s; }
.item-content { flex: 1; padding: 40px; display: flex; text-align: left; flex-direction: column; justify-content: center; background-color: var(--background-light2); z-index: 2; transition: all 0.5s; border: solid 1px var(--background-transparent-75); border-radius: 16px; box-shadow: var(--shadow); }
.highlight-item h3 { font-family: var(--font-header); font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--text); line-height: 1.1; margin-bottom: 20px; letter-spacing: 1px; }
.highlight-item p { font-size: 15px; color: var(--text-dark); line-height: 1.6; margin: 0; }
.highlight-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.h-tag { font-size: 12px; color: var(--text-dark); border: 1px solid rgba(255, 255, 255, 0.3); padding: 6px 15px; border-radius: 50px; letter-spacing: 1px; transition: all 0.3s ease; }

.ecommerce-alt-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; margin: 0 auto; padding: 40px 80px; background: radial-gradient(150% 50% at -5% 50%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 100%), var(--background); }
.ec-content { flex: 1; text-align: left; }
.ec-title { font-family: var(--font-header); font-size: 3rem; line-height: 1.1; text-transform: uppercase; color: var(--text); margin-bottom: 25px; }
.ec-desc { color: var(--text-dark); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; max-width: 90%; }
.ec-stats { display: flex; gap: 30px; margin-bottom: 10px; }
.stat-box { display: flex; flex-direction: column; border-left: 2px solid var(--accent); padding-left: 15px; }
.stat-num { font-size: 24px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 12px; text-transform: uppercase; color: var(--text-dark); letter-spacing: 1px; }
.ec-features-list { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.feature-row { display: flex; align-items: center; border: 1px solid var(--accent); padding: 25px; border-radius: 16px; transition: all 0.3s ease; position: relative; overflow: hidden; transform: translateX(-10px); background-color: rgba(123, 69, 240, 0.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-left: 5px solid var(--accent); }
.f-icon { width: 60px; height: 60px; background-color: var(--background); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); flex-shrink: 0; margin-right: 25px; border: 1px solid var(--glass); }
.f-text h3 { font-family: var(--font-header); font-size: 18px; color: var(--text); margin-bottom: 5px; text-transform: uppercase; }
.f-text p { font-size: 14px; color: var(--text-dark); margin: 0; line-height: 1.5; }

.process-flow { display: flex; width: 100%; height: 30vh; min-height: 250px; background-color: var(--background); border-top: 1px solid var(--background-light); border-bottom: 1px solid var(--background-light); overflow: hidden; }
.process-step { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 20px; border-right: 1px solid var(--background-light); transition: background-color 0.3s ease; animation: glowStep 8s infinite; }
.process-step:last-child { border-right: none; }
.step-number { font-size: 80px; line-height: 0.8; color: transparent; -webkit-text-stroke: 2px var(--accent); margin-right: 15px; animation: glowNumber 8s infinite; font-family: var(--font-header); }
.step-text { display: flex; flex-direction: column; justify-content: center; }
.step-text h3 { font-family: var(--font-header); font-size: 20px; color: var(--text); margin-bottom: 5px; text-transform: uppercase; line-height: 1.1; }
.step-text p { font-size: 13px; color: var(--text-dark); margin: 0; line-height: 1.3; max-width: 180px; }
@keyframes glowStep { 0% { background-color: var(--background); } 5% { background-color: var(--background-light); } 20% { background-color: var(--background-light); } 25% { background-color: var(--background); } 100% { background-color: var(--background); } }
@keyframes glowNumber { 0%, 25%, 100% { opacity: 0.5; transform: scale(1); color: transparent; -webkit-text-stroke: 2px var(--accent); } 5%, 20% { opacity: 1; transform: scale(1.1); color: var(--accent); -webkit-text-stroke: 0px; } }

.process-step:nth-child(1), .process-step:nth-child(1) .step-number { animation-delay: 0s; }
.process-step:nth-child(2), .process-step:nth-child(2) .step-number { animation-delay: 2s; }
.process-step:nth-child(3), .process-step:nth-child(3) .step-number { animation-delay: 4s; }
.process-step:nth-child(4), .process-step:nth-child(4) .step-number { animation-delay: 6s; }
.process-timeline { padding: 20px; background: radial-gradient(circle at -5% 50%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 25%), var(--background); }
.timeline-container { display: flex; flex-direction: column; position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line { position: absolute; left: 70px; top: 10px; bottom: 10px; width: 1px; background: rgba(255, 255, 255, 0.2); }
.timeline-step { display: flex; align-items: flex-start; margin-bottom: 50px; opacity: 0.25; transition: opacity 0.5s ease, transform 0.5s ease; transform: translateX(-10px); }
.timeline-step.active { opacity: 1; transform: translateX(0); }
.timeline-step:last-child { margin-bottom: 0; }
.step-left { width: 120px; display: flex; align-items: center; flex-shrink: 0; position: relative; padding-top: 8px; }
.step-num { font-size: 16px; letter-spacing: 2px; color: var(--text-dark); width: 50px; }
.timeline-step.active .step-num { color: var(--text); }
.step-dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--text-dark); background: transparent; position: absolute; left: 63px; transition: all 0.4s ease; }
.timeline-step.active .step-dot { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.step-right { flex-grow: 1; padding-left: 10px; }
.step-title { font-family: var(--font-header); font-size: 34px; color: var(--text); margin-bottom: 8px; line-height: 1.1; text-transform: none; }
.step-desc { font-size: 16px; color: var(--text-dark); line-height: 1.6; margin: 0; }
.timeline-step.active .step-desc { color: rgba(255, 255, 255, 0.85); }

.pricing-section { text-align: center; }
.pricing-section .container { width: 100%; margin: 0 auto; padding: 0 80px; box-sizing: border-box; }
.pricing-nav { position: relative; display: flex; justify-content: center; gap: 20px; border-bottom: 1px solid var(--background-lighter); }
.pricing-nav-btn { font-family: var(--font-header); font-size: 16px; color: var(--text-dark); background: none; border: none; padding: 15px 25px; cursor: pointer; text-transform: uppercase; transition: color 0.3s ease; }
.pricing-nav-btn.active { color: var(--accent); }
.nav-underline { position: absolute; bottom: -2px; height: 3px; background-color: var(--accent); border-radius: 3px; transition: left 0.4s cubic-bezier(0.7, 0, 0.25, 1), width 0.4s cubic-bezier(0.7, 0, 0.25, 1); }
.pricing-content-wrapper { position: relative; min-height: auto; margin-top: 40px; padding-bottom: 30px; }
.pricing-grid, .pricing-category-wrapper { display: none; opacity: 0; transform: translateY(10px); transition-duration: 0.4s; }
.pricing-grid.active { display: grid; opacity: 1; transform: translateY(0); position: relative !important; visibility: visible; transition-duration: 0.4s; }
.pricing-category-wrapper.active { display: block !important; opacity: 1; transform: translateY(0); transition-duration: 0.4s; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; position: absolute; width: 100%; visibility: hidden; transition-delay: 0.2s; }
.pricing-sub-nav { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.sub-nav-btn { background: transparent; color: var(--text-dark); border: 1px solid var(--color-input-border); padding: 10px 25px; border-radius: 30px; cursor: pointer; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.sub-nav-btn.active { background-color: var(--accent); color: var(--text); border-color: var(--accent); box-shadow: 0 0 20px var(--accent-dark); font-weight: 600; }

.pricing-card { border: 1px solid rgba(255, 255, 255, 0.3); padding: 30px; text-align: center; transition-duration: 0.3s; position: relative; overflow: hidden; border-radius: 16px; background-color: var(--background); z-index: 1; box-shadow: var(--shadow); }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(var(--background-transparent-75), var(--background-transparent-90)), var(--bg-img); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 0.4s ease; z-index: -1; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-dark); }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--text); font-size: 12px; font-weight: 700; padding: 5px 20px; border-radius: 0 0 10px 10px; text-transform: uppercase; }
.pricing-header h3 { font-family: var(--font-header); font-size: 24px; text-transform: uppercase; color: var(--text); }
.pricing-header h4 { color: var(--text-dark); font-size: 14px; margin-top: 5px; min-height: 40px; }
.pricing-price { font-family: var(--font-header); font-size: 48px; font-weight: 700; color: var(--text); margin: 0; }
.pricing-price .price-suffix { font-size: 16px; font-weight: 400; color: var(--text-dark); }
.card-features-list { color: var(--text); list-style: none; font-size: 16px; text-align: center; margin: 20px 0px; line-height: 25px; }
.card-features-list .fa-check { margin-right: 2px; }

.service-pricing-wrapper { padding: 0 5% 0px 5%; margin: 0 auto; }
.dp-desktop-only { display: block; }
.dp-mobile-only { display: none; }
.table-container { width: 90%; margin: auto; overflow-x: auto; margin-top: 40px; }
.dp-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; width: 90%; margin: auto; }
.dp-table-wrapper { margin-top: 40px; }
.service-table { width: 100%; border-collapse: separate; border-spacing: 0; color: var(--text); margin-top: 20px; }
.service-table th { padding: 25px; font-family: var(--font-header); font-size: 22px; text-transform: uppercase; background-color: var(--background-lighter); border-bottom: 2px solid var(--glass); position: relative; }
.service-table th span { display: block; font-size: 12px; color: var(--text-dark); font-weight: 400; margin-top: 5px; text-transform: none; }
.service-table th.recommended { color: var(--accent); border-bottom-color: var(--accent); background-color: rgba(123, 69, 240, 0.05); }
.service-table th.recommended::before { content: '★'; position: absolute; top: 5px; right: 10px; color: var(--accent); font-size: 14px; }
.service-table td { padding: 20px; border-bottom: 1px solid var(--glass); color: var(--text-dark); text-align: center; font-size: 15px; transition: 0.2s; }
.service-table td:first-child { text-align: left; font-weight: bold; color: var(--text); width: 30%; }
.service-table .highlight-cell { background-color: rgba(123, 69, 240, 0.03); border-left: 1px solid var(--glass); border-right: 1px solid var(--glass); color: var(--text); font-weight: 500; }
.check { color: #00e676; margin-right: 8px; font-style: normal; }
.cross { color: #ff1744; opacity: 0.3; }

#step3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; align-items: stretch; }
.package-features-list { list-style: none; padding: 0; text-align: center; margin: 20px 0; flex-grow: 1; color: var(--text-dark); font-size: 14px; }
.selection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.selection-box { background-color: var(--background-light); border: 1px solid var(--background-light); border-radius: 12px; padding: 15px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: 0.3s; color: var(--text); }
.selection-box i { font-size: 24px; margin-bottom: 10px; color: var(--accent); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(123, 69, 240, 0.1); border-radius: 50%; }
.selection-box.square { min-height: 150px; }
.selection-box.is-popular { position: relative; }
.selection-box span { font-size: 14px; font-weight: 500; }

.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; backdrop-filter: blur(4px); background-color: var(--background-transparent-75); display: none; justify-content: center; align-items: center; z-index: 99999; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; padding: 20px; box-sizing: border-box; }
.lightbox.active { display: flex; opacity: 1; pointer-events: auto; }
.lightbox-content { background-color: var(--background); backdrop-filter: blur(5px); border-radius: 20px; width: 1400px; height: 620px; box-shadow: 0 10px 40px var(--background-transparent-50); position: relative; transform: scale(0.9); transition: transform 0.4s ease; overflow: hidden; display: flex; flex-direction: row; }
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content.step-active .image-section { display: none; }
.lightbox-content.step-active .form-section { flex: 0 0 100% !important; max-width: 100% !important; }
.lightbox-content.step-active .back-btn { width: 30% !important; margin-left: auto; margin-right: auto; display: block; }
.image-section { flex: 1; min-width: 400px; background-image: url('/images/promo.webp'); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; position: relative; }
.image-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--text); font-size: 38px; text-transform: uppercase; text-align: center; background: var(--glass); font-family: var(--font-header); border-radius: 16px; box-shadow: var(--shadow); padding: 10px; width: 60%; backdrop-filter: blur(10px); }
.image-text p { font-size: 14px; color: var(--text-dark); font-style: italic; text-transform: capitalize; }
.form-section { flex: 1; max-width: 700px; padding: 40px 50px; display: flex; flex-direction: column; position: relative; color: var(--text); }
.close-lightbox { position: absolute; top: 25px; right: 30px; width: 28px; height: 28px; cursor: pointer; z-index: 10; }
.close-lightbox::before, .close-lightbox::after { content: ''; position: absolute; top: 50%; left: 50%; width: 24px; height: 2px; background-color: var(--text-dark); transform-origin: center; transition: transform 0.3s ease, background-color 0.3s ease; }
.close-lightbox::before { transform: translate(-50%, -50%) rotate(45deg); }
.close-lightbox::after { transform: translate(-50%, -50%) rotate(-45deg); }
.multi-step-form { display: flex; flex-direction: column; justify-content: center; flex-grow: 1; width: 100%; gap: 15px; }
.slide { display: none; animation: fadeIn 0.4s ease; }
.slide.active { display: block; }
.form-title { font-size: 36px; font-weight: bold; margin-bottom: 25px; line-height: 1.2; color: var(--text); margin-top: 0; font-family: var(--font-header); }
.name-group { display: flex; gap: 10px; justify-content: center; }
.name-group input { width: 100%; }
input { margin-top: 10px; padding: 15px 20px; border-radius: 10px; border: none; border-bottom: solid 1px var(--color-input-border); font-size: 16px; background-color: transparent; color: var(--text); width: 100%; box-sizing: border-box; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
input:focus { border-color: var(--accent); }
input::placeholder { color: var(--color-placeholder); }
.next-btn, button[type="submit"] { background-color: var(--accent); color: var(--text); font-weight: bold; cursor: pointer; transition: background-color 0.3s ease; font-size: 18px; padding: 15px; border-radius: 10px; border: none; margin-top: 10px; display: flex; justify-content: center; align-items: center; width: 100%; }
.next-btn .arrow-right, button[type="submit"] .arrow-right { margin-left: 10px; font-size: 20px; transition: transform 0.3s ease; }
.back-btn { background: transparent; color: var(--text-dark); border: 1px solid var(--text-dark); padding: 12px; border-radius: 10px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; margin-top: 15px; transition: 0.3s; }
.terms-text { font-size: 13px; color: var(--text-dark); text-align: center; margin-top: 30px; line-height: 1.5; }
.terms-text a { color: var(--accent); text-decoration: none; }

.supp-modal-overlay { display: none; position: fixed; z-index: 90000; left: 0; top: 0; width: 100%; height: 100vh; overflow: auto; backdrop-filter: blur(4px); background-color: var(--background-transparent-75); opacity: 0; transition: opacity 0.3s ease; }
.supp-modal-overlay.active { display: flex; justify-content: center; align-items: center; opacity: 1; }
.supp-modal-container { background-color: var(--background-light); border: 1px solid var(--glass); border-radius: 20px; width: 90%; max-width: 1100px; padding: 20px 40px; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); animation: slideUpFade 0.4s ease; text-align: center; color: var(--text); }
.supp-close-btn { position: absolute; top: 20px; right: 25px; color: var(--text-dark); font-size: 35px; font-weight: bold; cursor: pointer; transition: 0.3s; line-height: 20px; }
.supp-header { margin-bottom: 30px; }
.supp-title { font-family: var(--font-header); font-size: 36px; color: var(--text); text-transform: uppercase; margin-bottom: 10px; }
.supp-subtitle { color: var(--text-dark); font-size: 14px; margin-bottom: 25px; text-align: center; }
.supp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.supp-card { background-color: var(--background-lighter); border: 1px solid var(--glass); border-radius: 15px; padding: 30px 20px; transition: transform 0.3s, border-color 0.3s; position: relative; display: flex; flex-direction: column; }
.supp-card.supp-featured { border: 2px solid var(--accent); background-color: var(--background); }
.supp-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background-color: var(--accent); color: var(--text); padding: 5px 15px; font-size: 12px; font-weight: bold; border-radius: 20px; text-transform: uppercase; }
.supp-card-title { font-family: var(--font-header); font-size: 24px; margin-bottom: 15px; color: var(--text); text-align: center; }
.supp-price { font-size: 32px; font-weight: bold; color: var(--accent); margin-bottom: 10px; font-family: var(--font-header); }
.supp-netto { font-size: 14px; color: var(--text-dark); font-weight: normal; }
.supp-desc { font-size: 14px; color: var(--text-dark); margin-bottom: 15px; font-style: italic; min-height: auto; text-align: center; }
.supp-features { list-style: none; padding: 0; text-align: left; margin-top: auto; }
.supp-features li { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 14px; color: var(--text-dark); }
.supp-features li:last-child { border-bottom: none; }
.supp-hourly { border-top: 1px solid var(--glass); padding-top: 20px; margin-top: 20px; }
.supp-hourly h3 { font-size: 16px; text-transform: uppercase; color: var(--text); margin-bottom: 15px; }
.supp-hourly-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; color: var(--text-dark); font-size: 15px; }
.supp-hourly-grid strong { color: var(--accent); }

.supp-block-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.supp-section { padding: 0px; padding-top: 10px; background: var(--background); position: relative; margin: auto; }
.supp-section .supp-header { text-align: center; margin-bottom: 50px; }
.supp-section .supp-title { font-size: 42px; text-transform: uppercase; margin: 10px 0; }
.supp-section .supp-subtitle { color: var(--text-dark); font-size: 16px; max-width: 600px; margin: 0 auto; }
.supp-section .supp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; margin-bottom: 60px; }
.supp-section .supp-card { background-color: var(--background-light2); border: 1px solid var(--glass); border-radius: 20px; padding: 40px 30px; transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; position: relative; height: 520px; }
.supp-section .supp-featured { border: 2px solid var(--accent); }
.supp-section .supp-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--text); padding: 5px 20px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.supp-section .supp-card-title { font-family: var(--font-header); font-size: 26px; margin-bottom: 15px; }
.supp-section .supp-price { font-size: 32px; font-weight: bold; color: var(--accent); margin-bottom: 5px; }
.supp-section .supp-netto { font-size: 14px; color: var(--text-dark); font-weight: normal; }
.supp-section .supp-desc { color: var(--text-dark); font-style: italic; margin-bottom: 25px; font-size: 14px; }
.supp-section .supp-features { list-style: none; padding: 0; text-align: left; }
.supp-section .supp-features li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 15px; color: var(--text-dark); }
.supp-section .supp-hourly { text-align: center; border-top: 1px solid var(--glass); padding-top: 40px; }
.supp-section .supp-hourly h3 { font-size: 20px; text-transform: uppercase; margin-bottom: 25px; }
.supp-section .supp-hourly-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.supp-section .supp-hourly-grid div { background: var(--glass); padding: 10px 25px; border-radius: 30px; font-size: 14px; border: 1px solid transparent; transition: 0.3s; }
.more { font-size: 12px; color: var(--text-dark); text-decoration: underline; cursor: pointer; transition-duration: 0.4s; }

.clean-form { display: flex; flex-direction: column; gap: 10px; }
.input-group label { display: block; font-size: 12px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.clean-input { width: 100%; padding: 16px; border: none; border-bottom: solid 1px var(--color-input-border); background-color: transparent; color: var(--text) !important; font-size: 16px; transition: all 0.3s ease; outline: none; margin-top: 0 !important; }
.clean-input:focus { border-color: var(--accent) !important; }
.clean-input::placeholder { color: var(--color-placeholder) !important; }
.textarea-input { resize: vertical; min-height: 140px; }
.submit-btn-full { background-color: transparent; color: var(--text); border: 2px solid var(--accent); padding: 20px; border-radius: 16px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; gap: 12px; width: 100%; margin-top: 15px; text-transform: uppercase; letter-spacing: 2px; position: relative; overflow: hidden; }

.faq-section { background: radial-gradient(100% 50% at 110% 50%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 100%), var(--background); position: relative; }
.faq-container { max-width: 900px; margin: auto; }
.faq-item { border-radius: 12px; background-color: transparent; border-bottom: 1px solid var(--glass); transition: all 0.3s ease; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 25px 20px; background: none; border: none; outline: none; cursor: pointer; text-align: left; font-weight: 600; font-size: 1.1rem; color: var(--text); transition: color 0.3s ease; }
.faq-question span { padding-right: 20px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 20px; }
.faq-answer p { padding-bottom: 30px; color: var(--text-dark); line-height: 1.8; margin: 0; font-weight: 300; }
.faq-item.active { color: var(--text); background: var(--glass); margin-bottom: 5px; }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; color: transparent; transform-origin: center center; transition: transform 0.3s ease; }
.faq-icon::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background-color: var(--accent); transform: translateY(-50%); }
.faq-icon::after { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background-color: var(--accent); transform: translateX(-50%); }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.fullscreen-contact { display: flex; height: calc(100vh - 70px); margin-top: 70px; }
.split-visual-side { flex: 0 0 50%; position: relative; background-color: var(--background); background-image: linear-gradient(var(--background-transparent-75), var(--background-transparent-75)), url('/images/ss3.webp'); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; padding: 60px; color: var(--text); z-index: 1; box-shadow: var(--shadow); }
.split-visual-side::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.visual-content-wrapper { max-width: 500px; margin: 0 auto; }
.visual-title { font-family: var(--font-header); font-size: 48px; line-height: 1.1; margin-bottom: 30px; font-weight: 700; color: var(--text); }
.visual-desc { font-size: 16px; color: var(--text-dark); line-height: 1.6; margin-bottom: 40px; }
.contact-socials-row { display: flex; gap: 15px; margin-bottom: 40px; }
.direct-contact-info p { margin: 10px 0; font-size: 16px; display: flex; align-items: center; gap: 15px; color: var(--text-dark); }
.direct-contact-info i { color: var(--accent); }
.split-form-side { flex: 1; display: flex; justify-content: center; align-items: center; padding: 60px; position: relative; }
.form-content-wrapper { width: 100%; max-width: 600px; }

.service-page { background-color: var(--background); min-height: 100vh; }
.service-hero { position: relative; display: flex; width: 100%; min-height: 100vh; padding: 0; margin: 0; overflow: hidden; background-color: transparent; clip-path: inset(0); }
.service-hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 120px 80px 80px 80px; z-index: 2; background: radial-gradient(circle at 50% -10%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 70%), var(--background); box-sizing: border-box; text-align: center; }
.service-hero h1 { font-family: var(--font-header); font-size: 64px; line-height: 1.1; color: var(--text); text-transform: uppercase; margin-bottom: 30px; margin-left: auto; margin-right: auto; }
.service-hero p { font-size: 18px; color: var(--text-dark); line-height: 1.6; margin-bottom: 40px; margin-left: auto; margin-right: auto; max-width: 600px; }
.service-hero .service-tag { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; display: block; margin-bottom: 20px; margin-left: auto; margin-right: auto; }
.service-hero .btn { width: fit-content; margin-top: 20px; margin-left: auto; margin-right: auto; }
.service-hero-bg { flex: 1; height: auto; position: relative; background-position: center; background-repeat: no-repeat; background-size: cover; box-shadow: inset 50px 0 100px -20px var(--background); border-radius: 0; padding: 0; }
.service-hero-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); }

.service-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 60px 10%; background: linear-gradient(var(--background), var(--accent-darker), var(--background)); }
.benefit-box { background: var(--background-transparent-50); border: 1px solid var(--glass); padding: 30px; border-radius: 15px; transition-duration: 0.3s; text-align: center; }
.benefit-box i { font-size: 24px; color: var(--accent); margin: auto; margin-bottom: 15px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(123, 69, 240, 0.1); border-radius: 50%; }
.benefit-box h3 { font-family: var(--font-header); font-size: 20px; color: var(--text); margin-bottom: 10px; text-transform: uppercase; }
.benefit-box p { font-size: 14px; color: var(--text-dark); line-height: 1.5; }
.service-cta { background-image: linear-gradient(var(--background), transparent, var(--background)), url("/images/ts.webp"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; text-align: center; padding: 80px 20px; margin-top: 50px; }
.service-cta .btn { width: 20%; left: 0%; }
.service-cta h2 { font-family: var(--font-header); font-size: 36px; text-transform: uppercase; color: var(--text); margin-bottom: 15px; }
.service-cta p { color: var(--text); margin-bottom: 30px; }

.legal-main { padding-top: 150px; padding-bottom: 100px; max-width: 900px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.legal-content { padding: 40px; border-radius: 15px; line-height: 1.8; color: var(--text); }
.legal-content h1 { font-size: 30px; margin-bottom: 30px; text-transform: uppercase; }
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; display: inline-block; font-weight: bold; }
.legal-content h3 { color: var(--text); margin-top: 25px; }
.legal-content p, .legal-content li { font-weight: 300; }
.legal-content ul { list-style: none; padding-left: 0; }
.legal-content ul li::before { content: "✦"; color: var(--accent); margin-right: 10px; }
.update-date { font-style: italic; opacity: 0.6; margin-bottom: 40px; }

#cookie-banner { position: fixed; bottom: 0px; width: 100%; background: var(--background-light2); border: solid 1px var(--glass); color: var(--text); padding: 20px; z-index: 10000; transition: opacity 0.5s ease; display: flex; }
.cookie-content { display: flex; gap: 15px; width: 100%; flex-direction: row; align-items: center; text-align: center; }
.cookie-content p { font-size: 18px; line-height: 1.5; margin: 0; }
.cookie-content a { color: var(--accent); text-decoration: underline; }
.btn-cookie { background: var(--accent-dark); color: var(--text); border: none; padding: 8px 25px; border-radius: 16px; font-weight: 600; cursor: pointer; transition: transform 0.4s ease; }

.blog-post-container { background-color: var(--background); color: var(--text); }
.blog-hero { position: relative; height: 60vh; min-height: 400px; background-size: cover; background-position: center; display: flex; text-align: center; align-items: flex-end; }
.blog-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.2)); z-index: 1; }
.blog-hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 20px 60px 20px; }
.blog-meta-header { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-hero h1 { font-family: var(--font-header); font-size: 3.5rem; line-height: 1.1; color: var(--text); margin: 0; font-weight: 700; }
.blog-content-wrapper { flex: 1; max-width: 840px; margin: 0 auto; padding: 60px 20px; }
.blog-article { font-size: 1rem; line-height: 1.8; color: rgba(255, 255, 255, 0.9); }
.blog-article h2 { font-size: 2rem; color: var(--text); margin-top: 50px; margin-bottom: 25px; scroll-margin-top: 120px; }
.blog-article h3 { font-size: 1.5rem; color: var(--text); margin-top: 40px; margin-bottom: 20px; }
.blog-article p { margin-bottom: 25px; }
.blog-article strong { color: var(--text); font-weight: 700; }
.blog-article a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.blog-article ul, .blog-article ol { margin-bottom: 30px; padding-left: 20px; }
.blog-article li { margin-bottom: 15px; position: relative; }
.blog-article ul li::marker { color: var(--accent); }
.blog-blockquote { margin: 40px 0; padding: 30px; background-color: rgba(255, 255, 255, 0.03); border-left: 4px solid var(--accent); font-style: italic; font-size: 1.25rem; color: var(--text); }
figure.blog-figure { margin: 40px 0; }
.blog-figure img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.blog-figure figcaption { text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-top: 15px; font-style: italic; }
.author-box { margin-top: 80px; padding: 40px; background-color: rgba(255, 255, 255, 0.03); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; gap: 30px; }
.author-image { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.author-info h4 { font-family: var(--font-header); font-size: 1.3rem; margin: 0 0 10px 0; color: var(--text); }
.author-info h4 span { color: var(--accent); font-size: 1rem; font-weight: 400; }
.author-info p { font-size: 0.95rem; margin: 0; color: rgba(255, 255, 255, 0.8); }
.blog-layout-container { display: flex; max-width: 1200px; margin: 0 auto; padding: 60px 20px; gap: 50px; align-items: flex-start; }
.blog-toc { position: sticky; top: 120px; width: 300px; flex-shrink: 0; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.blog-toc h3 { font-family: var(--font-header); font-size: 1.2rem; color: var(--text); margin-bottom: 20px; text-transform: uppercase; border-bottom: 1px solid var(--glass); padding-bottom: 10px; }
.blog-toc ul { list-style: none; padding: 0; margin: 0; }
.blog-toc li { margin-bottom: 12px; position: relative; padding-left: 10px; }
.blog-toc li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.toc-return-btn { padding-left: 10px; color: var(--text); transition: color 0.3s ease, padding-left 0.3s ease; }

.fullscreen-portfolio { min-height: 100vh; background-color: var(--background); position: relative; }
.portfolio-hero { text-align: center; max-width: 90%; }
.portfolio-hero .section_name { padding: 20px; }
.portfolio-hero .btn { left: 25%; width: 50%; margin: 20px; }
.portfolio-hero-bg { background: radial-gradient(circle at 50% -20%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 50%), var(--background); width: 100%; min-height: 350px; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 60px; padding-top: 60px; box-shadow: var(--shadow); }
.portfolio-hero h2 { font-size: 52px; font-family: var(--font-header); color: var(--text); text-transform: uppercase; margin: 10px 0 20px; text-shadow: 2px 2px 6px var(--background); }
.portfolio-desc { color: var(--text-dark); font-size: 18px; max-width: 600px; margin: 0 auto; text-shadow: 2px 2px 6px var(--background); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; width: 100%; margin: 0 auto; padding: 0 5%; background: linear-gradient(var(--background), var(--background), var(--accent-darker), var(--background), var(--background)); }

.blog-card { display: flex; flex-direction: column; height: 100%; background-color: var(--background-light); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; overflow: hidden; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; box-shadow: var(--shadow); }
.blog-thumb-wrapper { position: relative; height: 220px; overflow: hidden; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.blog-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 13px; }
.blog-meta .cat-tag { margin-bottom: 0; background: rgba(123, 69, 240, 0.1); padding: 4px 10px; border-radius: 4px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.date-tag { color: var(--text-dark); letter-spacing: 1px; }
.date-tag i { margin-right: 5px; color: var(--accent); }
.blog-content h3 { font-family: var(--font-header); font-size: 22px; line-height: 1.3; margin-bottom: 15px; color: var(--text); transition: color 0.3s ease; }
.blog-content .excerpt { font-size: 15px; color: var(--text-dark); line-height: 1.6; margin-bottom: 25px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-link { color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease, color 0.3s ease; align-self: flex-start; }
.read-more-link i { color: var(--accent); transition: transform 0.3s ease; }

.footer { background: radial-gradient(circle at 50% 110%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 50%), var(--background); color: var(--text); text-align: center; padding-top: 80px; padding-bottom: 20px; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo img { width: 200px; }
.footer-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 40px auto; width: 90%; }
.footer-categories p { margin: 5px 0; font-size: 16px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.footer-sc { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 0px 0; }
.social-box { box-shadow: var(--shadow); border: 1px solid var(--glass); background-color: var(--glass); width: 45px; height: 45px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 20px; transition-duration: 0.3s; text-decoration: none; }
.footer-bottom { padding-top: 20px; text-align: center; width: 80%; margin: 20px auto 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; }
.footer-links a { color: var(--text-dark); text-decoration: none; font-size: 12px; }
.copyright { font-size: 12px; color: var(--text-dark); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDetails { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpFade { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes scroll-loop { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
@keyframes sh02 { from { opacity: 0; left: 0%; } 50% { opacity: 1; } to { opacity: 0; left: 100%; } }
@keyframes glowStep { 0% { background-color: var(--background); } 5% { background-color: var(--background-light); } 20% { background-color: var(--background-light); } 25% { background-color: var(--background); } 100% { background-color: var(--background); } }
@keyframes glowNumber { 0%, 25%, 100% { opacity: 0.5; transform: scale(1); color: transparent; -webkit-text-stroke: 2px var(--accent); } 5%, 20% { opacity: 1; transform: scale(1.1); color: var(--accent); -webkit-text-stroke: 0px; } }

@media (min-width: 768px) {
    .highlight-section:hover .highlight-item { border: 1px solid rgba(255, 255, 255, 0.3); }
    .benefits-track { display: none; }
    #kmobile { display: none; }
    .btn::before { content: ''; display: block; width: 0px; height: 86%; position: absolute; top: 7%; left: 0%; opacity: 0; background: var(--accent); box-shadow: 0 0 50px 30px var(--accent); transform: skewX(-20deg); }
    .btn:active { box-shadow: 0 0 0 0 transparent; transition: box-shadow 0.2s ease-in; }
    ::-webkit-scrollbar-thumb:hover { background: var(--text); }
    .close-lightbox:hover::before, .close-lightbox:hover::after { transform: translate(-50%, -50%) rotate(0deg); background-color: var(--text); }
    .next-btn:hover, button[type="submit"]:hover { background-color: var(--accent-dark); }
    .next-btn:hover .arrow-right, button[type="submit"]:hover .arrow-right { transform: translateX(5px); }
    .back-btn:hover { border-color: var(--text); color: var(--text); }
    .terms-text a:hover { text-decoration: underline; }
    .navbar-socials a:hover { opacity: 1; transform: scale(1.1); color: var(--accent); }
    .navbar .nav-link:hover { color: var(--text); }
    .navbar .nav-btn-custom:hover { box-shadow: 0 0 20px var(--accent-dark); }
    .navbar:hover { backdrop-filter: blur(20px); }
    .split-col:hover .split-bg { transform: scale(1.1); }
    .pricing-nav-btn:hover { color: var(--accent); }
    .pricing-section { background: linear-gradient(var(--background), var(--accent-darker), var(--background)); }
    .faq-item:hover { background: var(--glass); }
    .social-box:hover { transform: scale(1.1) rotate(4deg); background-color: var(--accent); transition-duration: 0.3s; }
    .footer-links a:hover { text-decoration: underline; }
    .submit-btn-full:hover { background-color: var(--accent); }
    .sub-nav-btn:hover { border-color: var(--accent); color: var(--text); box-shadow: 0 0 15px var(--accent-dark); }
    .blog-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
    .blog-card:hover .blog-image { transform: scale(1.1); }
    .blog-card:hover h3 { color: var(--accent); }
    .read-more-link:hover { color: var(--accent); gap: 12px; }
    .blog-card:hover .read-more-link i { transform: translateX(3px); }
    .benefit-box:hover { transition-duration: 0.3s; border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px var(--accent-darker); }
    .service-table tr:hover td { background-color: rgba(255, 255, 255, 0.04); }
    .service-table tr:hover .highlight-cell { background-color: rgba(123, 69, 240, 0.16); }
    .more:hover { color: var(--accent); transition-duration: 0.4s; }
    .supp-close-btn:hover { color: var(--accent); }
    .supp-card:hover { transform: translateY(-5px); border-color: var(--accent); }
    .supp-section .supp-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
    .supp-section .supp-hourly-grid div:hover { border-color: var(--accent); color: var(--accent); }
    .btn-cookie:hover { background: var(--accent); transform: scale(1.05); box-shadow: 0 0 10px 5px var(--accent-dark); }
    .blog-toc li a:hover { color: var(--text); text-decoration: underline; }
    .toc-return-btn:hover { padding-left: 5px; text-decoration: none; color: var(--accent); }
    .selection-box:hover { border-color: var(--accent); box-shadow: 0 0px 10px var(--accent); }
    .btn:hover { box-shadow: 0 0 30px 5px var(--accent-dark); transition: all 0.2s ease-out; background-color: var(--accent); }
    .btn:hover::before { animation: sh02 1.5s infinite; }
    .item-content { border: solid 1px var(--background-transparent-75); border-radius: 16px; box-shadow: var(--shadow); }
    .item-content:hover { border-color: var(--accent); }
    .container { width: 90%; margin: auto; }
    .pricing-card { border: 1px solid rgba(255, 255, 255, 0.3); padding: 30px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; background-color: var(--background); z-index: 1; }
    .pricing-card:hover::before, .pricing-card.featured::before { opacity: 1; }
    .pricing-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px var(--accent-dark); }
    .blog-hero-split { display: flex; width: 100%; min-height: 60vh; background-color: var(--background); margin-top: 70px; }
    .blog-hero-text { width: 60%; display: flex; flex-direction: column; justify-content: center; padding: 60px 5%; box-sizing: border-box; }
    .blog-hero-text h1 { font-family: var(--font-header); font-size: 3.5rem; line-height: 1.1; color: var(--text); margin: 0; font-weight: 700; }
    .blog-hero-text .blog-meta-header { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
    .blog-hero-img { width: 40%; background-size: cover; background-position: center; background-repeat: no-repeat; }
    
    .selection-grid { grid-template-columns: repeat(6, 1fr); }
    .selection-box:nth-child(1), .selection-box:nth-child(2) { grid-column: span 3; }
    .selection-box:nth-child(n+3) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .image-text { display: none !important; }
    #kkom, .service-pricing-wrapper { display: none; }
    #kmobile { border: none; }
    .btn { box-shadow: 0 0 18px 3px var(--accent-dark); background-color: var(--accent); font-size: 12px; }
    .pricing-card { border-radius: 20px; padding: 25px; position: relative; transition: transform 0.3s ease; background-image: linear-gradient(var(--background-transparent-75), var(--background)), var(--bg-img); background-size: cover; background-position: center; background-repeat: no-repeat; border-color: var(--background); border: 1px solid var(--background); }
    .check { color: #2ecc71; }
    .cross { color: #e74c3c; opacity: 0.5; }
    .hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10000; margin-left: auto; }
    .hamburger .bar { width: 30px; height: 3px; background-color: var(--text); transition: 0.3s; border-radius: 3px; }
    .hamburger .bar:nth-child(2) { width: 20px; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .navbar { padding: 0 20px; justify-content: space-between; z-index: 9990; background: var(--background); }
    .navbar .nav-links-group { position: fixed !important; top: 60px; left: -100vw; width: 100vw; height: calc(100vh - 60px); background-color: var(--background); flex-direction: column; align-items: center; justify-content: flex-start; gap: 0 !important; padding-top: 20px; padding-bottom: 50px; margin: 0; box-sizing: border-box; z-index: 9990; transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; -ms-overflow-style: none; scrollbar-width: none; }
    .navbar .nav-links-group::-webkit-scrollbar { display: none; }
    .navbar .nav-links-group.active { left: 0; }
    .nav-links-group .nav-link { margin: 0; padding: 15px 0; font-size: 18px; display: inline-flex !important; align-items: center !important; gap: 10px; color: var(--text) !important; text-decoration: none; white-space: nowrap; }
    .nav-links-group a[href="/blog.html"] { padding-top: 10px !important; margin-top: 0 !important; }
    .navbar .nav-link i { font-size: 14px; display: inline-block; transform: rotate(-90deg); }
    .navbar .nav-btn-custom { margin: 15px 0 0 0; font-size: 18px; padding: 12px 35px; background: var(--background-light); box-shadow: none; }
    .sidebar { display: none; }
    .navbar-socials a { font-size: 16px; }
    
    .promo-container { width: 100%; padding: 10px; position: relative; font-size: 14px; top: -20px; }
    .promo-container .btn { margin-top: 20px; width: 100%; font-size: 12px; }
    .hero h1 { font-size: 36px; padding: 10px; margin: 0px; }
    .hero h1 .highlight { font-size: 40px; }
    .kicker { font-size: 14px; padding: 10px; }
    .text-box { padding: 10px; }
    .text-box p { font-size: 16px; padding: 10px; display: none; }
    .hero-block { left: 50%; transform: translateX(-50%); width: 95%; border-radius: 20px 20px 0 0; position: absolute; bottom: 0; margin-bottom: 0; }
    .hero-block .stats-container { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; align-items: center; gap: 5px; padding: 15px 5px; width: 100%; position: relative; left: -50%; }
    .hero-block .stat-item, .stat-item span { flex: 1 1 45%; padding: 0; font-size: 28px; margin-bottom: 2px; }
    .hero-block .stat-item p { font-size: 10px; word-break: break-word; padding-bottom: 5px; }
    .scroll-banner { height: 4vh; }
    .scroll-track { font-size: 14px; }

    .highlight-grid { display: grid; grid-template-columns: repeat(1, 2fr); padding: 0px 15px; gap: 15px; }
    .highlight-item { display: flex; flex-direction: column; height: auto; z-index: 0; grid-column: span 1 !important; }
    .highlight-section { background: none; }
    .highlight-item .item-content { padding: 25px; order: 1; border-bottom: 1px solid rgba(255, 255, 255, 0.3); text-align: left; }
    .highlight-tags { gap: 5px; justify-content: right; }
    .h-tag { font-size: 10px; padding: 4px 8px; }
    
    .pricing-sub-nav { flex-wrap: wrap; gap: 10px; justify-content: center; padding: 0 10px; }
    .sub-nav-btn { flex: 0 1 auto; width: auto; padding: 6px 12px; font-size: 12px; letter-spacing: 0.5px; display: inline-flex; align-items: center; justify-content: center; text-align: center; min-height: 40px; line-height: 1.3; white-space: nowrap; }
    .split-screen-section { flex-direction: column; gap: 15px; z-index: 0; }
    .split-col { min-height: 400px; padding: 40px 20px; border-right: none; border-radius: 16px; border-bottom: 1px solid var(--glass); width: 90%; margin: auto; }
    .split-content h2 { font-size: 28px; }
    
    .pricing-section .container { padding: 0 20px; }
    .pricing-nav { flex-wrap: wrap; gap: 5px; }
    .pricing-nav-btn { font-size: 14px; padding: 10px; }
    .pricing-grid, #step3-grid { grid-template-columns: 1fr !important; position: relative; gap: 20px; width: 95%; }
    
    .lightbox { padding: 10px; }
    .lightbox ::-webkit-scrollbar { display: none; }
    .lightbox-content { flex-direction: column; width: 100%; max-width: 500px; height: auto; max-height: 90vh; overflow-y: auto; border-radius: 16px; }
    .image-section { display: none; }
    .form-section { padding: 30px 20px; flex: 1; max-width: 100%; }
    .form-title { font-size: 24px; text-align: left; margin: 20px 0px; }
    .name-group { flex-direction: column; gap: 0; }
    input { padding: 14px; font-size: 16px; margin-top: 8px; }
    .selection-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .selection-box:nth-child(1) { grid-column: span 2; aspect-ratio: auto; min-height: 120px; }
    .selection-box:nth-child(n+2) { grid-column: span 1; aspect-ratio: 1 / 1; }
    .selection-box { padding: 15px 10px; }
    .selection-box i { font-size: 22px; }
    .next-btn, .back-btn { height: 55px; font-size: 16px; }
    .close-lightbox { top: 15px; right: 15px; width: 35px; height: 35px; }
    .terms-text { font-size: 11px; margin-top: 20px; }
    
    .ecommerce-alt-wrapper { flex-direction: column; padding: 30px 20px; gap: 40px; text-align: center; }
    .ec-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .ec-title { display: none; }
    .ec-desc { max-width: 100%; font-size: 1rem; margin-bottom: 25px; }
    .ec-stats { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: flex-start; margin-bottom: 20px; }
    .stat-box { display: flex; flex-direction: row; align-items: center; gap: 8px; border-left: 2px solid var(--accent); padding-left: 12px; }
    .stat-num { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; }
    .stat-label { font-size: 11px; text-transform: uppercase; color: var(--text-dark); letter-spacing: 1px; white-space: nowrap; }
    .ec-features-list { width: 100%; }
    .feature-row { transform: translateX(0); padding: 20px; flex-direction: column; text-align: center; gap: 15px; }
    .f-icon { margin-right: 0; width: 50px; height: 50px; font-size: 20px; }
    .f-text h3 { font-size: 16px; }
    
    .portfolio-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .section_name { width: 90%; padding: 40px 0; }
    .section_name .lead { font-size: 12px; }
    .section_name h2 { font-size: 28px; }
    .faq-container { max-width: 90%; margin: auto; }
    
    .supp-modal-container { width: 95%; max-height: 85vh; overflow-y: auto; padding: 40px 20px 20px 20px; border-radius: 15px; -webkit-overflow-scrolling: touch; }
    .supp-modal-container::-webkit-scrollbar { display: none; }
    .supp-close-btn { top: 10px; right: 15px; font-size: 32px; display: flex; justify-content: center; align-items: center; z-index: 10; }
    .lightbox-content.step-active .back-btn { width: 100% !important; }
    .supp-modal-container .supp-title { font-size: 26px; margin-bottom: 5px; }
    .supp-modal-container .supp-subtitle { font-size: 13px; margin-bottom: 30px; }
    .supp-modal-container .supp-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; left: 0px; }
    .supp-modal-container .supp-card { padding: 25px 20px; height: auto; width: 100%; }
    .supp-modal-container .supp-price { font-size: 26px; }
    .supp-modal-container .supp-features li { font-size: 13px; padding: 6px 0; }
    .supp-hourly { padding-top: 20px; margin-top: 10px; }
    .supp-hourly h3 { font-size: 14px; margin-bottom: 15px; }
    .supp-hourly-grid { display: flex; flex-direction: column; gap: 10px; }
    .supp-hourly-grid div { background: var(--glass); padding: 12px 15px; border-radius: 10px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; width: 100%; box-sizing: border-box; }
    
    .supp-section .supp-features { display: none; }
    .supp-section .supp-card { height: 390px; }
    .supp-section .supp-grid { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
    
    .service-hero { display: flex; flex-direction: column; width: 100%; background: var(--background); padding: 0; padding-top: 10vh; height: 90vh; }
    .service-hero-content { order: 1; padding: 30px 20px; text-align: center; width: 100%; box-sizing: border-box; height: 80vh; }
    .service-hero-bg { display: block; position: relative; order: 2; width: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 1; clear: both; margin: 0; }
    .service-tag { display: inline-block; padding: 5px 15px; background: var(--glass); color: var(--accent); font-size: 12px; text-transform: uppercase; border-radius: 16px; margin-bottom: 20px; }
    .service-hero h1 { font-size: 2rem; line-height: 1.1; color: var(--text); margin-bottom: 20px; }
    .service-hero h1 br { display: none; }
    .service-hero p { font-size: 14px; line-height: 1.6; color: var(--text-dark); margin-bottom: 30px; }
    .btn .open-lightbox { display: block; width: 100%; padding: 15px; text-transform: uppercase; cursor: pointer; margin: auto; }
    .service-cta { padding: 60px 20px; text-align: center; width: 100%; box-sizing: border-box; }
    .service-cta h2 { font-size: 1.8rem; line-height: 1.2; color: var(--text); margin-bottom: 15px; }
    .service-cta p { font-size: 1rem; line-height: 1.5; margin-bottom: 30px; padding: 0 10px; }
    .service-cta .btn { display: block; width: 100%; padding: 15px; text-transform: uppercase; cursor: pointer; margin: auto; position: relative; left: 0px; transform: scale(0.8); }
    .service-cta .btn.open-lightbox:active { transform: scale(0.96); background: var(--accent-dark); }
    .service-cta .btn .text { font-size: 15px; }
    
    .process-flow { display: grid; grid-template-columns: repeat(1, 1fr); gap: 15px; padding: 40px 20px; background: var(--background); width: 100%; box-sizing: border-box; height: auto; border: none; }
    .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px 15px; border: 1px solid var(--glass); border-radius: 16px; transition: transform 0.3s ease; min-height: 0; }
    .step-number { font-size: 2rem; opacity: 0.5; margin-bottom: 10px; }
    .step-text h3 { font-size: 1.1rem; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
    .step-text p { font-size: 1rem; color: var(--text-dark); line-height: 1.4; margin: 0; }
    
    .service-benefits { overflow: hidden; padding: 40px 0; width: 100%; position: relative; display: block; }
    .benefits-track { display: flex; width: max-content; animation: scrollLoop 25s linear infinite; }
    .benefit-box { flex: 0 0 250px; margin: 0 10px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 15px; background: var(--background-transparent-50); border: 1px solid var(--glass); border-radius: 20px; }
    .benefit-box i { font-size: 24px; color: var(--accent); margin-bottom: 15px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(123, 69, 240, 0.1); border-radius: 50%; }
    .benefit-box h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; text-transform: uppercase; font-family: var(--font-header); }
    .benefit-box p { font-size: 0.8rem; color: var(--text-dark); line-height: 1.4; margin: 0; }
    .mobile-copy { display: flex; }
    @keyframes scrollLoop { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 4 - 80px)); } }
    
    .footer { padding-top: 50px; }
    .footer-logo img { width: 180px; }
    .footer-categories { gap: 15px; margin: 30px 0; }
    .footer-categories p { font-size: 14px; }
    .footer-sc { gap: 15px; }
    .social-box { width: 40px; height: 40px; font-size: 18px; }
    .footer-bottom { width: 95%; margin-top: 30px; border: none; }
    .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 15px; }
    .footer-links a { font-size: 13px; white-space: nowrap; }
    
    .fullscreen-contact { flex-direction: column; height: auto; margin-top: 70px; }
    .split-visual-side { flex: 0 0 auto; padding: 40px 20px; text-align: center; background-attachment: scroll; }
    .visual-content-wrapper { max-width: 100%; }
    .visual-title { font-size: 32px; margin-bottom: 20px; }
    .visual-desc { font-size: 14px; margin-bottom: 30px; }
    .contact-socials-row { justify-content: center; }
    .direct-contact-info p { justify-content: center; font-size: 15px; }
    .split-form-side { padding: 40px 20px; background-color: var(--background); }
    .form-content-wrapper { max-width: 100%; }
    .clean-form .name-group { flex-direction: column; gap: 0; }
    .clean-input { padding: 18px; font-size: 16px; margin-bottom: 10px; }
    .submit-btn-full { padding: 18px; font-size: 10px; border-radius: 12px; margin-top: 10px; }
    
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { margin: auto; }
    #cookie-banner { position: fixed; bottom: 0px; left: 0%; }
    
    .blog-post-container { padding-top: 60px; }
    .blog-hero { height: 50vh; min-height: 300px; }
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-content-wrapper { padding: 0px; }
    .blog-article { font-size: 1rem; width: 90%; margin: auto; }
    .blog-blockquote { font-size: 1rem; }
    .blog-article h2 { font-size: 1.6rem; }
    .author-box { flex-direction: column; text-align: center; padding: 30px 20px; }
    .author-image { width: 80px; height: 80px; }
    .blog-hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 20px 40px 20px; }
    .blog-layout-container { flex-direction: column; padding: 40px 20px; }
    .blog-toc { position: static; width: 100%; box-sizing: border-box; }
    .portfolio-hero h2 { font-size: 34px; }
    .portfolio-desc { font-size: 16px; }
    
    .process-timeline { padding: 20px 15px; background: radial-gradient(circle at -5% 50%, var(--accent-darker) 0%, rgba(0, 0, 0, 1) 70%), var(--background); }
    .timeline-container { width: 90%; }
    .timeline-line { left: 40px; }
    .step-left { width: 75px; padding-top: 4px; }
    .step-num { font-size: 10px; width: 30px; }
    .step-dot { width: 12px; height: 12px; left: 34px; }
    .step-title { font-size: 26px; }
    .step-desc { font-size: 14px; }
    .timeline-step { margin-bottom: 40px; }
    
    .blog-hero-split { flex-direction: column; min-height: auto; margin-top: 20px; }
    .blog-hero-text, .blog-hero-img { width: 100%; }
    .blog-hero-img { min-height: 200px; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .blog-hero-text { padding: 40px 20px; }
    .blog-hero-text h1 { font-size: 1.5rem; text-align: center; font-family: var(--font-header); }
    .blog-hero-text .blog-meta-header { font-size: 0.7rem; color: var(--text-dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
    
    .dp-desktop-only { display: none; }
    .dp-mobile-only { display: block; position: relative; }
    .dp-mobile-nav { display: flex; justify-content: center; }
    .dp-nav-btn { width: 100px; background: transparent; color: var(--text-dark); border: none; border-bottom: 2px solid transparent; font-size: 14px; font-family: var(--font-header); text-transform: uppercase; padding: 10px 5px; cursor: pointer; border-radius: 50px; transition: all 0.3s ease; }
    .dp-nav-btn.active { background: var(--accent); color: var(--text); box-shadow: 0 0 20px 5px var(--accent-dark); }
    .dp-mobile-grid { display: flex; flex-direction: row !important; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 20px; padding: 10px 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; width: 100%; margin: auto; }
    .dp-mobile-grid::-webkit-scrollbar { display: none; }
    .dp-mobile-card { flex: 0 0 100%; scroll-snap-align: center; transform: scale(0.9); transition: transform 0.3s ease; }
    .dp-mobile-details { margin: 25px 0 15px 0; text-align: left; border-top: 1px solid var(--glass); padding-top: 15px; }
    .dp-mobile-details ul { list-style: none; padding: 0; margin: 0; }
    .dp-mobile-details li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 13px; color: var(--text-dark); line-height: 1.4; }
    .dp-mobile-details li:last-child { border-bottom: none; }
    .dp-mobile-details li strong { color: var(--text); font-weight: 500; flex: 1; padding-right: 15px; }
    .dp-val-span { text-align: right; flex: 1; }
    .slider-arrow { display: none !important; }
    .legal-main { padding-top: 70px; }
}