/* ============================================
   RESET & VARIABLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta: Neon + czerń + off-white beż */
    --color-accent: #BCF241;
    --color-accent-hover: #A8D936;
    --color-accent-glow: rgba(188, 242, 65, 0.35);
    --color-text-on-accent: #000000;
    --color-bg-dark: #000000;
    --color-bg-light: #F2F0E4;
    --color-text-on-dark: #FFFFFF;
    --color-text-on-light: #1A1A1A;
    --color-muted-on-dark: rgba(255, 255, 255, 0.75);
    --color-muted-on-light: #5A5A5A;
    --color-border-dark: rgba(255, 255, 255, 0.12);
    --color-border-light: rgba(0, 0, 0, 0.12);
    --color-bg-card-dark: #1A1A1A;
    --color-bg-card-light: #FFFFFF;
    --font-primary: 'Manrope', sans-serif;
    --font-heading: 'Noto Serif Display', serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Sekcje ciemne (Dark Mode) */
.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}
.section-dark p,
.section-dark .text-color-grey,
.section-dark .label:not(.label--accent) {
    color: var(--color-muted-on-dark);
}
.section-dark .text-color-white,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-text-on-dark);
}
.section-dark .label {
    color: var(--color-muted-on-dark);
    border-color: var(--color-border-dark);
    background: rgba(255, 255, 255, 0.05);
}

/* Sekcje jasne (Beż) */
.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-on-light);
}
.section-light p,
.section-light .text-color-grey,
.section-light .label:not(.label--accent) {
    color: var(--color-muted-on-light);
}
.section-light .text-color-white {
    color: var(--color-text-on-light);
}
.section-light .text-color-grey {
    color: var(--color-muted-on-light);
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--color-text-on-light);
}
.section-light .label {
    color: var(--color-muted-on-light);
    border-color: var(--color-border-light);
    background: rgba(0, 0, 0, 0.04);
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader .preloader-logo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 45px rgba(0, 0, 0, 0.65);
    animation: pulse 1.6s infinite;
}

.preloader .preloader-brand-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.preloader .preloader-brand-row .heading-style-h5 {
    color: #ffffff;
    font-size: 1.1rem;
}

.preloader .preloader-bar {
    position: relative;
    width: 180px;
    max-width: 60vw;
    height: 3px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.preloader .preloader-bar-fill {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(188, 242, 65, 0.1), var(--color-accent), rgba(188, 242, 65, 0.1));
    box-shadow: 0 0 16px var(--color-accent-glow);
    animation: preloader-bar-move 1.3s infinite ease-in-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes preloader-bar-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(260%);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

.section-dark p { color: var(--color-muted-on-dark); }
.section-light p { color: var(--color-muted-on-light); }

.label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

/* Label na początku sekcji – neon zielony, tekst czarny (wyższa specyficzność niż .section-* .label) */
.label-section-intro,
.section-dark .label.label-section-intro,
.section-light .label.label-section-intro {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border: 1px solid var(--color-accent);
    font-weight: 600;
}

/* ============================================
   LAYOUT
   ============================================ */

.padding-global {
    padding-left: 2.5%;
    padding-right: 2.5%;
}

.container-large {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.padding-section-medium {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* ============================================
   NAVIGATION - 1:1 Z ORYGINAŁU (GRID LAYOUT)
   ============================================ */

.navbar_component {
    z-index: 500;
    position: fixed;
    inset: 0.5rem 0% auto;
    margin-top: 0.25rem;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

.navbar_container {
    padding: 0.5rem;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border: 1px solid var(--color-border-dark);
    border-radius: 48px;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    grid-template-rows: auto;
    grid-template-columns: 0.375fr auto;
    grid-auto-columns: 1fr;
    align-items: center;
    max-width: 100%;
    display: grid;
}

.nav_brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-on-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.15s ease;
    pointer-events: auto;
}

.nav_brand:hover {
    opacity: 0.85;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 0;
}

/* Usuń wszelkie domyślne odstępy wokół osadzonego Lottie */
.logo-animation > div {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

/* Wymuś dokładny rozmiar bez wewnętrznych marginesów/ramki */
.logo-animation svg, .logo-animation canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Usuń ewentualne obramowanie z przeglądarki/UA */
.logo-animation svg {
    overflow: visible;
}

.navbar2_button-wrapper {
    grid-column-gap: 1rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.navbar_menu {
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
}

.navbar_menu.is-page-height-tablet {
    color: var(--color-text-on-dark);
}

.navbar_link {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    border-radius: 48px;
    opacity: 0.9;
    color: var(--color-text-on-dark);
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
}

.navbar_link:hover {
    opacity: 1;
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.06);
}

.navbar_link.w--current {
    color: var(--color-text-on-dark);
}

.navbar_menu-button {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.menu-icon2_line-top,
.menu-icon2_line-middle-inner,
.menu-icon2_line-bottom {
    background-color: var(--color-text-on-dark);
    width: 24px;
    height: 2px;
    transition: all 0.3s ease;
}

.menu-icon2_line-middle {
    display: flex;
    align-items: center;
    height: 2px;
    margin: 4px 0;
}

/* Navbar on scroll */
.navbar_component.scrolled .navbar_container {
    background-color: rgba(0, 0, 0, 0.95);
    border-color: var(--color-border-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.w-layout-grid {
    display: grid;
}

.w-button {
    color: var(--color-text-on-accent);
    line-height: inherit;
    cursor: pointer;
    background-color: var(--color-accent);
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}

.button {
    padding: 0.625rem 1.25rem;
    background-color: var(--color-accent);
    color: var(--color-text-on-accent);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 48px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.button.is-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.button:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-text-on-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.heading-style-h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.paragraph-6-copy {
    margin: 0;
    display: inline;
}

.code-embed-5 {
    display: inline-flex;
    align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: var(--color-bg-light);
    color: var(--color-text-on-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-glow);
    color: var(--color-text-on-accent);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.section-dark .link {
    color: var(--color-text-on-dark);
}
.section-dark .link:hover {
    color: var(--color-accent);
}
.section-light .link {
    color: var(--color-text-on-light);
}
.section-light .link:hover {
    color: var(--color-accent);
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.link:hover {
    gap: 0.75rem;
}

.link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION - 1:1 Z ORYGINAŁU
   ============================================ */

.section_home_header {
    padding-bottom: 30px;
}

/* Hero – tylko blok z nagłówkiem ma wideo w tle, reszta na czarnym */
.section_home_header.hero {
    background-color: var(--color-bg-dark);
}

/* Hero full-width: bez paddingów i bez max-width kontenera */
.section_home_header.hero .padding-global {
    padding-left: 0;
    padding-right: 0;
}

.section_home_header.hero .container-large {
    max-width: none;
    width: 100%;
}

.hero-video-block {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    padding-bottom: 5rem;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1;
}

.hero-video-inner {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

/* Tablet i mobile: padding tylko dla treści nad wideo, tło wideo zostaje full-width */
@media (max-width: 992px) {
    .section_home_header.hero .hero-video-inner {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
}

.hero-title-wrapper {
    grid-column-gap: 0;
    grid-row-gap: 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 6rem;
    display: flex;
}

.max-width-large.hero {
    text-align: center;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.animation_lottie.align-centre {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.label.is_fixed {
    position: relative;
}

.section-dark .label.text-color-grey {
    color: var(--color-muted-on-dark);
}
.section-light .label.text-color-grey {
    color: var(--color-muted-on-light);
}

.icon-animation {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-animation .animation {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.text-align-center {
    text-align: center;
}

.section-dark .text-color-white {
    color: var(--color-text-on-dark);
}
.section-light .text-color-white {
    color: var(--color-text-on-light);
}

.section-dark .text-color-grey {
    color: var(--color-muted-on-dark);
}
.section-light .text-color-grey {
    color: var(--color-muted-on-light);
}

.hero-text {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero – mocniejsza, unikalna typografia nagłówka i leadu */
.hero-heading-main {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.3vw, 4.6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-heading-main .hero-heading-tagline {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.15em 0.85em;
    border-radius: 999px;
    background-color: var(--color-accent);
    color: black;
    border: 1px solid var(--color-accent);
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section_home_header.hero .hero-text.hero-subtitle-main {
    font-size: 1.05rem;
    max-width: 46rem;
    margin-top: 0.5rem;
}

.button-group.align-center {
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.button-group.mobile {
    display: flex;
    justify-content: center;
}

/* Hero carousel z parallax effect */
.moving-hero {
    
    padding-bottom: 3rem;
    width: 100vw;
    position: relative;
    overflow: visible;
    margin-left: calc(-50vw + 50%);
}

.inside-moving-hero {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    width: 160vw;
    display: flex;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-image {
    padding: 0.5rem;
    border: 1px solid var(--color-border-dark);
    border-radius: 1rem;
    object-fit: cover;
    width: 17rem;
    height: 350px;
    flex-shrink: 0;
}

.hero-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

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

/* ============================================
   SERVICES SECTION - 1:1 Z ORYGINAŁU
   ============================================ */

.section_home_services {
    background-color: var(--color-bg-light);
    /* background-image: url('https://cdn.prod.website-files.com/661685703798b803e4b90e1a/678275e9e9bf82af78769674_Noise%20%26%20Texture.avif'); */
    background-position: 50%;
    background-size: auto;
}

.services_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.service_component {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
}

@media (max-width: 992px) {
    .service_component {
        grid-template-columns: 1fr;
    }
}

.services_card {
    padding: 0.5rem;
    grid-column-gap: 0;
    grid-row-gap: 0;
    border: 1px solid var(--color-border-light);
    border-radius: 1rem;
    background-color: var(--color-bg-card-light);
    color: var(--color-text-on-light);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    min-height: auto;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.services_card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section_home_services .services_card-content {
    background-color: var(--color-bg-light);
    color: var(--color-text-on-light);
    /* background-image: url('https://cdn.prod.website-files.com/661685703798b803e4b90e1a/678275e9e9bf82af78769674_Noise%20%26%20Texture.avif'); */
    background-position: 50%;
    background-size: cover;
    border-radius: 12px;
    flex-direction: column;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.04);
}

.image-container {
    border-radius: 0.5rem;
    background-color: var(--color-bg-light);
    display: flex;
    width: 100%;
    overflow: hidden;
}

.lottie_services {
    border-radius: 0.5rem;
    width: 100%;
    height: 20.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.lottie_services > div {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.lottie_services svg,
.lottie_services canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    display: block;
}

/* ============================================
   CSS ANIMATIONS - HERO SPARKLE
   ============================================ */

.sparkle-animation svg {
    animation: rotate 3s linear infinite;
}

.sparkle-path {
    animation: sparkleGlow 2s ease-in-out infinite;
    transform-origin: center;
}

.sparkle-circle {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes sparkleGlow {
    0%, 100% { 
        fill: #FFFFFF;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    50% { 
        fill: #BCF241;
        filter: drop-shadow(0 0 20px rgba(188, 242, 65, 0.5));
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        r: 5;
        opacity: 1;
    }
    50% { 
        r: 8;
        opacity: 0.6;
    }
}

/* ============================================
   CSS ANIMATIONS - ANIMATED GRID (9 boxes)
   ============================================ */

.animated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1rem;
    width: 100%;
    height: 100%;
}

.grid-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: gridPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 4s linear infinite;
}

@keyframes gridPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(0.95);
        opacity: 0.7;
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   CSS ANIMATIONS - ANIMATED PHONES
   ============================================ */

.animated-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
}

.phone-device {
    width: 80px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-bg-card-dark) 0%, #252525 100%);
    border: 2px solid var(--color-border-dark);
    border-radius: 12px;
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-device::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.phone-device::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 6px;
    animation: screenGlow 2s ease-in-out infinite;
}

.phone-1 {
    animation-delay: 0s;
    z-index: 3;
}

.phone-2 {
    animation-delay: 0.3s;
    transform: scale(1.1);
    z-index: 4;
    border-color: rgba(255, 255, 255, 0.25);
}

.phone-3 {
    animation-delay: 0.6s;
    z-index: 3;
}

@keyframes phoneFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.02);
    }
}

.phone-2 {
    animation-name: phoneFloatCenter;
}

@keyframes phoneFloatCenter {
    0%, 100% { 
        transform: translateY(0px) scale(1.1);
    }
    50% { 
        transform: translateY(-20px) scale(1.12);
    }
}

@keyframes screenGlow {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% { 
        opacity: 1;
        box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

.service_content {
    padding: 1.5rem;
    flex-direction: column;
    flex: 1;
    display: flex;
}

.services_card-content-bottom {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    justify-content: flex-end;
    align-self: stretch;
    align-items: stretch;
    display: flex;
    margin-bottom: 1.5rem;
}

.tag-wrapper {
    margin-top: 1.5rem;
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: wrap;
    width: 100%;
    display: flex;
}

.section_home_services .tag-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-muted-on-light);
    font-weight: 500;
    border: 1px solid var(--color-border-light);
    transition: all 0.2s ease;
}

.section_home_services .tag-item:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Jedno słowo w nagłówku karty – jak neonowy button (jak tag na dole) */
.section_home_services .heading-accent {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    border: 1px solid var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

/* Jeden tag w każdej karcie – wstawka neonowa */
.section_home_services .tag-item--neon {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border-color: var(--color-accent);
    font-weight: 600;
}
.section_home_services .tag-item--neon:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-text-on-accent);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-row {
    display: contents;
}

.project-card {
    position: relative;
    background: var(--color-bg-card-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.project-card .services_card-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.project-card.dimmed .services_card-content {
    opacity: 0;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

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

.project-content {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: var(--transition);
    z-index: 2;
}

.project-card:hover .project-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.7));
}

.project-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--color-text-on-dark);
}

.project-type {
    color: var(--color-muted-on-dark);
    font-weight: 400;
    font-size: 1rem;
}

.project-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-muted-on-dark);
}

.disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-dark);
}

.section-dark .disclaimer p {
    color: var(--color-text-on-dark);
    margin-bottom: 1rem;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon {
    text-align: center;
    background: var(--color-bg-light);
}

/* Full-bleed tylko dla tej jednej sekcji (bez wpływu na resztę .container / .section) */
.coming-soon--fullbleed.section {
    padding: 0;
    margin: 0;
}

.coming-soon--fullbleed .coming-soon__container--fullbleed {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-text {
    font-size: 2rem;
    color: var(--color-text-on-light);
    margin-bottom: 2.5rem;
}

/* Siatka 3 bloków – pełna szerokość, obramowanie 1px (góra + pion), bez dołu */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
    border-top: 1px solid #1A1A1A;
    margin-top: 2.5rem;
}

.coming-soon-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    text-align: left;
    border-right: 1px solid #1A1A1A;
}

.coming-soon-cell:last-child {
    border-right: none;
}

.coming-soon-cell-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.coming-soon-cell-body {
    width: 100%;
}

.coming-soon-cell-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-on-light);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.coming-soon-cell-text {
    font-size: 1rem;
    color: var(--color-muted-on-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    .coming-soon-cell {
        border-right: none;
        border-bottom: 1px solid #1A1A1A;
    }
    .coming-soon-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .coming-soon-cell {
        align-items: center;
        text-align: center;
    }
    .coming-soon-cell-icon {
        width: 200px;
        height: 200px;
    }
}

/* Przycisk secondary (na ciemnym tle) */
.section-dark .btn-phone:not(.btn-cta) {
    border: 1px solid var(--color-border-dark);
    color: var(--color-text-on-dark);
}
.section-dark .btn-phone:not(.btn-cta):hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
    border-color: var(--color-accent);
}
/* Przycisk secondary (na jasnym tle) */
.section-light .btn-phone:not(.btn-cta) {
    border: 1px solid var(--color-border-light);
    color: var(--color-text-on-light);
}
.section-light .btn-phone:not(.btn-cta):hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-phone:hover {
    border-radius: 24px;
    transform: translateY(-1px);
}

.btn-phone:hover i {
    transform: scale(1.1);
}

/* Navbar button */
.nav-button .btn-phone {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    border: 1px solid var(--color-border-dark);
    color: var(--color-text-on-dark);
}
.nav-button .btn-phone:hover {
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
    border-color: var(--color-accent);
}
.nav-button .btn-phone i {
    font-size: 12px;
}

/* Główny CTA - neon limonka, tekst czarny */
.cta .btn-phone,
.btn-phone.btn-cta {
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: var(--color-text-on-accent);
}

.cta .btn-phone:hover,
.btn-phone.btn-cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-text-on-accent);
    border-color: var(--color-accent-hover);
}

/* ============================================
   DRIBBBLE SECTION
   ============================================ */

.dribbble-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.dribbble-content {
    position: sticky;
    top: 120px;
}

.dribbble-icon {
    max-width: 150px;
    margin-bottom: 2rem;
}

.dribbble-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dribbble-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollDown 30s linear infinite;
}

.dribbble-column:nth-child(1) {
    animation: scrollUp 25s linear infinite;
}

.dribbble-column:nth-child(2) {
    animation: scrollDown 30s linear infinite;
}

.dribbble-column.scroll-down {
    margin-top: 3rem;
}

.dribbble-column img {
    width: 100%;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dribbble-column img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50px); }
    100% { transform: translateY(0); }
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    background: var(--color-bg-light);
}
.section-light .products {
    background: var(--color-bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-dark);
    transition: var(--transition);
    cursor: pointer;
}
.section-light .product-card {
    background: var(--color-bg-card-light);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.large {
    grid-row: span 2;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.product-info h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.section-dark .testimonial-card {
    background: var(--color-bg-card-dark);
    border: 1px solid var(--color-border-dark);
}
.section-light .testimonial-card {
    background: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
}

.testimonial-card {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.section-dark .testimonial-card:hover {
    border-color: var(--color-border-dark);
}
.section-light .testimonial-card:hover {
    border-color: var(--color-border-light);
}

.testimonial-card.gif {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.testimonial-card.gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.section-dark .testimonial-card p { color: var(--color-muted-on-dark); }
.section-light .testimonial-card p { color: var(--color-muted-on-light); }

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-dark .testimonial-author h4 { color: var(--color-text-on-dark); }
.section-light .testimonial-author h4 { color: var(--color-text-on-light); }

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.section-dark .testimonial-author p { color: var(--color-muted-on-dark); }
.section-light .testimonial-author p { color: var(--color-muted-on-light); }

.testimonial-author p {
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.section-dark .faq {
    background: var(--color-bg-dark);
}
.section-light .faq {
    background: var(--color-bg-light);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.section-dark .accordion-item {
    border-bottom: 1px solid var(--color-border-dark);
}
.section-light .accordion-item {
    border-bottom: 1px solid var(--color-border-light);
}

.section-dark .accordion-header {
    color: var(--color-text-on-dark);
}
.section-light .accordion-header {
    color: var(--color-text-on-light);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--color-accent);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1rem;
}

.section-dark .accordion-content p { color: var(--color-muted-on-dark); }
.section-light .accordion-content p { color: var(--color-muted-on-light); }

.accordion-content p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    position: relative;
    text-align: center;
    padding: 4rem 0;
    background: transparent;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h1 {
    margin-bottom: 2rem;
    color: var(--color-text-on-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-dark);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-column a {
    color: var(--color-text-on-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-column .email,
.footer-column p {
    color: var(--color-muted-on-dark);
    margin-top: 1rem;
}

.available {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.available svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-dark);
}

.footer-bottom p {
    color: var(--color-muted-on-dark);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1175px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar_component {
        z-index: 500;
        margin-top: 0;
        border-bottom: 1px solid var(--color-border-dark);
        background-color: rgba(0, 0, 0, 0.95);
        top: 0;
    }

    .navbar_container {
        padding-right: 0;
        padding-left: 0;
        border-radius: 0;
        border-style: none;
        grid-template-columns: 0.25fr 1fr;
        justify-content: space-between;
        width: 100%;
        margin-top: 0;
        display: flex;
    }

    .navbar_menu {
        border-bottom: 1px solid var(--color-border-dark);
        background-color: rgba(0, 0, 0, 0.98);
        justify-content: center;
        width: 100%;
        padding: 1rem 5% 2.5rem;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        overflow: auto;
    }

    .navbar_menu.is-page-height-tablet {
        font-size: 2rem;
        height: 100dvh;
        padding-bottom: 6.5rem;
        transition: height 0.5s;
    }

    .navbar_menu.w--open {
        display: flex;
    }

    .navbar_link {
        font-size: 2rem;
        text-align: center;
        padding: 0.75rem 0;
    }

    .navbar_menu-button {
        padding: 0;
        display: block;
    }

    .navbar_menu-button.w--open {
        background-color: transparent;
    }

    .menu-icon2_line-top {
        background-color: var(--color-text-on-dark);
        width: 24px;
        height: 2px;
    }

    .menu-icon2_line-middle {
        margin: 4px 0;
    }

    .menu-icon2_line-bottom {
        background-color: var(--color-text-on-dark);
        width: 24px;
        height: 2px;
    }

    .navbar_menu-button.w--open .menu-icon2_line-top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar_menu-button.w--open .menu-icon2_line-middle-inner {
        opacity: 0;
    }

    .navbar_menu-button.w--open .menu-icon2_line-bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .dribbble-content {
        position: static;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service_component {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .lottie_services {
        border: 1px solid var(--color-border-light);
        border-radius: 12px;
        height: 16rem;
        overflow: hidden;
    }
    
    .lottie_services > div {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .lottie_services svg,
    .lottie_services canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain !important;
        display: block;
    }

    .services_card {
        min-height: 60vh;
    }

    .inside-moving-hero {
        width: 1280px;
    }

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


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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 15rem;
        height: 330px;
    }

    .inside-moving-hero {
        width: 1070px;
    }

    .lottie_services {
        height: 14rem;
        overflow: hidden;
    }
    
    .lottie_services > div {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .lottie_services svg,
    .lottie_services canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain !important;
        display: block;
    }

    .services_card {
        z-index: 12;
        min-height: 60vh;
    }

    .service_component {
        overflow: visible;
    }

    .moving-hero {
        padding-top: 0;
    }

    .cta {
        padding: 2.5rem 0;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth scroll for project cards hover effect */
.project-card[data-hover] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card[data-hover]:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Selection style */
::selection {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

/* ============================================
   Pływający przycisk telefonu (lewy dolny róg)
   ============================================ */
.float-phone {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    text-decoration: none;
    color: var(--color-text-on-accent);
    -webkit-tap-highlight-color: transparent;
}

.float-phone-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-phone-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-phone-wave 3.2s ease-out infinite;
}

.float-phone-ring:nth-child(1) { animation-delay: 0s; }
.float-phone-ring:nth-child(2) { animation-delay: 1.05s; }
.float-phone-ring:nth-child(3) { animation-delay: 2.1s; }

@keyframes float-phone-wave {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
        border-color: var(--color-accent);
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        border-color: var(--color-accent);
    }
}

.float-phone-btn {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 0 0 rgba(188, 242, 65, 0.5);
    animation: float-phone-pulse 2.8s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-phone:hover .float-phone-btn {
    transform: scale(1.08);
    box-shadow: 0 0 24px var(--color-accent-glow), 0 0 48px rgba(188, 242, 65, 0.2);
}

.float-phone:active .float-phone-btn {
    transform: scale(0.98);
}

@keyframes float-phone-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(188, 242, 65, 0.45);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(188, 242, 65, 0);
    }
}

@media (max-width: 480px) {
    .float-phone {
        bottom: 1rem;
        left: 1rem;
        width: 56px;
        height: 56px;
    }
    .float-phone-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .float-phone-ring {
        inset: -2px;
    }
}
