﻿/* 
   Pietrzykanna.pl
*/

:root {
    /* Colors */
    --bg-main: #020308;
    --bg-section: #040612;
    --bg-card: rgba(10, 12, 31, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --accent-neon: #00F5FF;
    --accent-vibrant: #6366F1;
    --gradient-aurora: linear-gradient(120deg, rgba(0, 245, 255, 0.15) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 100%);
    --border-color: rgba(0, 245, 255, 0.12);
    --gradient-glow: radial-gradient(circle, rgba(0, 245, 255, 0.2) 0%, transparent 70%);

    /* Spacing System */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;

    /* Layout */
    --max-width: 1200px;
    --section-padding-desktop: 100px;
    --section-padding-mobile: 70px;

    /* Effects */
    --radius-card: 20px;
    --radius-btn: 16px;
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: var(--space-24);
    color: var(--text-primary);
    line-height: 1.1;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, #00F5FF 0%, #3B82F6 50%, #6366F1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.2));
}

.title-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.title-reveal-1,
.title-reveal-2 {
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-reveal-2 {
    animation-delay: 0.2s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-48);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-16);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-32);
    max-width: 600px;
}

.hero .lead {
    font-size: 1.1rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-24);
}

.section {
    padding: var(--section-padding-desktop) 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

.bg-primary {
    background-color: var(--bg-main);
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-24) 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    padding: var(--space-16) 0;
}

header.scrolled .nav-container {
    background: rgba(7, 10, 24, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 100px;
    padding: 10px 30px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 245, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #00F5FF 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: var(--space-32);
}

.mobile-cta-wrapper {
    display: none;
    width: 100%;
    padding-top: var(--space-24);
}

.desktop-cta {
    display: inline-flex;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .nav-links {
        gap: var(--space-24);
    }
}

@media (max-width: 860px) {
    header {
        padding: var(--space-16) 0;
    }

    .desktop-cta {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(4, 6, 18, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        gap: var(--space-32);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Sora', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-cta-wrapper {
        display: flex;
        justify-content: center;
    }

    .mobile-cta-wrapper .btn {
        width: 80%;
        max-width: 300px;
    }

    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    header.scrolled .nav-container {
        border-radius: 20px;
        margin-top: 5px;
        padding: 8px 20px;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-neon);
    box-shadow: 0 0 10px var(--accent-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: var(--space-8);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: rgba(90, 120, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(4px);
}

.btn-primary:hover {
    border-color: var(--accent-blue);
    background-color: rgba(90, 120, 255, 0.1);
    box-shadow: 0 0 25px rgba(90, 120, 255, 0.2), inset 0 0 10px rgba(90, 120, 255, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-consultation {
    background: rgba(0, 245, 255, 0.05);
    color: var(--text-primary);
    padding: 12px 32px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.btn-consultation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-consultation::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0px var(--accent-neon);
    transition: var(--transition-normal);
}

.btn-consultation:hover {
    transform: translateY(-3px);
    border-color: var(--accent-neon);
    background: rgba(0, 245, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.btn-consultation:hover::before {
    transform: translateX(100%);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, var(--bg-main) 0%, #000 100%);
}

.hero-cosmos {
    position: absolute;
    inset: -20% 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.shooting-star-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 245, 255, 0.8));
    animation: shootingStar 1.5s linear forwards;
    opacity: 0;
}

.shooting-star.purple {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(139, 92, 246, 0.8));
}

@keyframes shootingStar {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

.star-field {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
}

.star-sm {
    width: 1px;
    height: 1px;
}

.star-md {
    width: 2px;
    height: 2px;
}

.star-lg {
    width: 3px;
    height: 3px;
}

.star-navy {
    background: #1E293B;
}

.star-purple {
    background: #6366F1;
}

.pulse-star {
    animation: starPulse 3s infinite alternate ease-in-out;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.cosmos-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    z-index: 1;
    opacity: 0.6;
    will-change: transform;
    pointer-events: none;
}

.blob-1 {
    width: 1000px;
    height: 1000px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 70%);
    transform: translateY(calc(var(--scroll-y, 0) * 0.4px));
}

.blob-2 {
    width: 1200px;
    height: 1200px;
    bottom: -30%;
    left: -25%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.25) 0%, transparent 70%);
    transform: translateY(calc(var(--scroll-y, 0) * 0.2px));
}

.blob-3 {
    width: 800px;
    height: 800px;
    top: 20%;
    left: 5%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    transform: translateY(calc(var(--scroll-y, 0) * 0.3px));
}

.blob-4 {
    width: 700px;
    height: 700px;
    top: 60%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.25) 0%, transparent 70%);
    transform: translateY(calc(var(--scroll-y, 0) * 0.5px));
}

.blob-5 {
    width: 900px;
    height: 900px;
    top: 5%;
    left: 40%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    transform: translateY(calc(var(--scroll-y, 0) * 0.15px));
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-64);
    align-items: center;
}

@media (max-width: 992px) {
    .hero {
        padding-bottom: var(--space-96);
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: var(--space-48);
        align-items: center;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero .lead {
        margin: 0 auto var(--space-32);
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: var(--space-16);
    }

    .hero-btns .btn {
        width: 100%;
    }
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: url(/assets/img/pietrzykanna-anna-pietrzyk.avif) no-repeat center;
    background-size: cover;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-vibrant));
    z-index: -1;
    border-radius: inherit;
    opacity: 0.6;
    filter: blur(8px);
    transition: var(--transition-normal);
}

.hero-signature {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 12, 31, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 245, 255, 0.1);
    z-index: 5;
    transform: translateY(10px);
    opacity: 0;
    animation: revealSignature 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.5s;
}

@keyframes revealSignature {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sig-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.hero-btns {
    display: flex;
    gap: var(--space-16);
}

.hero-bullets {
    margin-bottom: var(--space-48);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    position: relative;
    z-index: 2;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    padding: var(--space-12) 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.bullet-icon {
    width: 10px;
    height: 10px;
    background: var(--accent-neon);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 15px var(--accent-neon);
}

.bullet-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 0.5px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
    animation: dotPulse 3s infinite;
    opacity: 0;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hero-bullets li strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-bullets li span {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: var(--space-8);
}

@media (max-width: 992px) {
    .hero-btns {
        justify-content: center;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-64);
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: var(--space-24);
}

.section-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.7;
}

.corner-cyan {
    top: 40px;
    left: 40px;
    border-top: 3.5px solid var(--accent-neon);
    border-left: 3.5px solid var(--accent-neon);
    border-top-left-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
    animation: cornerPulse 4s infinite alternate ease-in-out;
}

.corner-purple {
    bottom: 40px;
    right: 40px;
    border-bottom: 3.5px solid #A855F7;
    border-right: 3.5px solid #A855F7;
    border-bottom-right-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
    animation: cornerPulse 4s infinite alternate-reverse ease-in-out;
}

.corner-purple-tl {
    top: 40px;
    left: 40px;
    border-top: 3.5px solid #A855F7;
    border-left: 3.5px solid #A855F7;
    border-top-left-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
    animation: cornerPulse 4s infinite alternate ease-in-out;
}

.corner-cyan-br {
    bottom: 40px;
    right: 40px;
    border-bottom: 3.5px solid var(--accent-neon);
    border-right: 3.5px solid var(--accent-neon);
    border-bottom-right-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
    animation: cornerPulse 4s infinite alternate-reverse ease-in-out;
}

@keyframes cornerPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.client-card {
    background: #080A1A !important;
    border: 1px solid var(--border-color);
    padding: var(--space-64) var(--space-48);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    position: relative;
    transform-style: preserve-3d;
    height: 100%;
}

.client-card .card-footer {
    margin-top: auto;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color, var(--accent-neon));
    border-radius: inherit;
    opacity: 0;
    filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
    pointer-events: none;
    transform: translateZ(-1px);
    z-index: -1;
}

.client-card:hover::before {
    opacity: 0.2;
    inset: -10px;
}

.client-card:hover {
    border-color: var(--accent-color, var(--accent-neon));
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.client-card .card-icon {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    color: var(--accent-neon);
    transition: all 0.4s ease;
    opacity: 0.6;
}

.client-card:hover .card-icon {
    color: var(--accent-vibrant);
    filter: drop-shadow(0 0 5px var(--accent-vibrant));
    transform: scale(1.05);
    opacity: 0.9;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-neon);
    background: rgba(0, 245, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 0.5px solid rgba(0, 245, 255, 0.2);
}

.client-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    max-width: 80%;
}

.client-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-right: 40px;
}

.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.glow-purple {
    background: #A855F7;
    top: 20%;
    left: -10%;
}

.glow-cyan {
    background: var(--accent-neon);
    bottom: 20%;
    right: -10%;
}

.glow-cyan-tl {
    background: var(--accent-neon);
    top: 20%;
    left: -10%;
}

.glow-purple-br {
    background: #A855F7;
    bottom: 20%;
    right: -10%;
}

.section-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.card-grid {
    display: grid;
    gap: var(--space-32);
}

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

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

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

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

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

@media (max-width: 992px) {

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

@media (max-width: 640px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: var(--space-32);
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(90, 120, 255, 0.1);
}

.card h3 {
    margin-bottom: var(--space-16);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}



.form-group {
    margin-bottom: var(--space-24);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-8);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(90, 120, 255, 0.2);
}

footer {
    padding: var(--space-64) 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--space-24);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 300ms ease, transform 300ms ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-64);
}

.section-header h2 {
    margin-bottom: var(--space-16);
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hero-style-section {
    position: relative;
    padding: calc(var(--section-padding-desktop) * 1.5) 0;
    background: radial-gradient(circle at 50% 50%, #070A18 0%, #000 100%) !important;
    overflow: hidden;
    min-height: auto;
    z-index: 10;
}

.hero-style-section .hero-cosmos {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
    pointer-events: none !important;
}

.hero-style-section .hero-cosmos .star-field,
.hero-style-section .hero-cosmos .shooting-star-container {
    position: absolute;
    inset: 0;
}

.hero-style-section .hero-cosmos .cosmos-blob {
    opacity: 0.3;
}

.hero-style-section .relative-z {
    position: relative;
    z-index: 5;
    width: 100%;
}

.ultra-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    line-height: 1.25;
    font-weight: 800;
    margin: 0 auto var(--space-80);
    text-align: center;
    max-width: 750px;
}

.unified-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-48);
}

.premium-card {
    background: linear-gradient(145deg, rgba(15, 20, 45, 0.4), rgba(5, 8, 20, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: var(--space-64) var(--space-48);
    backdrop-filter: blur(24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card-number-bg {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-neon);
    opacity: 0.4;
    letter-spacing: 0.05em;
}

.cyan-accent .card-number-bg {
    color: var(--accent-neon);
}

.purple-accent .card-number-bg {
    color: #A855F7;
}

.indigo-accent .card-number-bg {
    color: #6366F1;
}

.card-icon-main {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-32);
    transition: all 0.4s ease;
}

.indigo-accent .card-icon-main {
    color: #6366F1;
}

.cyan-accent .card-icon-main {
    color: var(--accent-neon);
}

.purple-accent .card-icon-main {
    color: #A855F7;
}

.premium-card:hover .card-icon-main {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.indigo-accent:hover {
    border-color: rgba(99, 102, 241, 0.4);
}

.cyan-accent:hover {
    border-color: rgba(0, 245, 255, 0.4);
}

.purple-accent:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.premium-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-24);
    line-height: 1.3;
}

.premium-list-v4 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.premium-list-v4 li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.4;
}

.li-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.indigo-accent .li-icon {
    color: #6366F1;
}

.cyan-accent .li-icon {
    color: var(--accent-neon);
}

.purple-accent .li-icon {
    color: #A855F7;
}

@media (max-width: 1200px) {
    .unified-cards-grid {
        gap: var(--space-32);
    }
}

@media (max-width: 992px) {
    .unified-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-32);
    }

    .ultra-title {
        font-size: 1.8rem;
    }
}

.parallax-cosmos {
    transform: translateY(calc(var(--scroll-y, 0) * 0.6px));
}

.grid-services-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

.mobile-scroll-hint {
    display: none;
}

.services-interactive-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-64);
    background: rgba(15, 20, 45, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: var(--space-48);
    backdrop-filter: blur(24px);
    margin-top: var(--space-96);
    transition: all 0.8s ease;
    min-height: 600px;
    position: relative;
    z-index: 5;
}

.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: var(--space-32);
}

.service-tab {
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-family: inherit;
    position: relative;
}

.service-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.service-tab.active {
    background: linear-gradient(90deg, var(--accent-alpha, rgba(0, 245, 255, 0.1)), transparent);
    color: var(--accent-color, var(--accent-neon));
}

.service-tab::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 0%;
    width: 3px;
    background: var(--accent-color, var(--accent-neon));
    transition: height 0.4s ease;
    border-radius: 3px;
}

.service-tab.active::after {
    height: 70%;
}

.service-tab .tab-number {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.4;
    font-family: 'Sora', sans-serif;
}

.service-tab.active .tab-number {
    opacity: 1;
}

.services-content-wrapper {
    position: relative;
    padding-left: var(--space-16);
}

.service-detail-content {
    display: none;
}

.service-detail-content.active {
    display: block;
    animation: slideFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateX(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.service-microcopy {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color, var(--accent-neon));
    margin-bottom: var(--space-16);
    font-weight: 600;
    opacity: 0.9;
}

.service-detail-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: var(--space-32);
    font-weight: 800;
    line-height: 1.2;
}

.indigo-accent {
    --accent-color: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.5);
    --accent-alpha: rgba(99, 102, 241, 0.15);
}

.cyan-accent {
    --accent-color: #00f5ff;
    --accent-glow: rgba(0, 245, 255, 0.5);
    --accent-alpha: rgba(0, 245, 255, 0.15);
}

.purple-accent {
    --accent-color: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.5);
    --accent-alpha: rgba(168, 85, 247, 0.15);
}

.services-interactive-container.active-indigo {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
}

.services-interactive-container.active-cyan {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 60px rgba(0, 245, 255, 0.15);
}

.services-interactive-container.active-purple {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.15);
}

.parallax-cosmos,
.section-grid-overlay,
.section-glow,
.corner-accent,
.hero-cosmos,
.star-field,
.cosmos-blob,
.shooting-star-container {
    pointer-events: none !important;
//    z-index: 1;
}

.parallax-cosmos {
    transform: translateY(calc(var(--scroll-y, 0) * 0.05px));
}

.relative-z {
    position: relative;
    z-index: 20 !important;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 120px;
    align-items: center;
    margin-bottom: 120px;
}

.about-intro-text p {
    margin-bottom: var(--space-24);
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-intro-text .section-lead {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.6;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-hero-image-placeholder {
    aspect-ratio: 3/4;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url(/assets/img/pietrzykanna-anna-pietrzyk.avif) no-repeat center;
    background-size: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image-placeholder span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-full-width {
    max-width: 850px;
    margin: 140px auto;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
}

.about-full-width p {
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
}

.cyber-pull-quote {
    position: relative;
    max-width: 1100px;
    margin: 120px auto 40px;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(0, 245, 255, 0.05) 50%, transparent 100%);
    border-top: 1px solid rgba(147, 51, 234, 0.3);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
}

.cyber-pull-quote p {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #fff 50%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-pull-quote::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40%;
    right: 40%;
    height: 2px;
    background: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon);
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-full-width {
        margin: 80px auto;
    }
}

@media (max-width: 768px) {
    .cyber-pull-quote {
        padding: 60px 24px;
        margin: 80px auto;
    }

    .cyber-pull-quote p {
        font-size: 1.15rem;
    }
}

@media (max-width: 1200px) {
    .grid-services-preview {
        grid-template-columns: 1fr;
    }

    .services-interactive-container {
        grid-template-columns: 1fr;
        padding: var(--space-32) var(--space-16);
        min-height: auto;
        gap: var(--space-32);
    }

    .mobile-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--accent-color, var(--accent-neon));
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: var(--space-16);
        opacity: 0.7;
        animation: hintPulse 2s infinite;
    }

    @keyframes hintPulse {

        0%,
        100% {
            opacity: 0.4;
            transform: translateX(0);
        }

        50% {
            opacity: 0.8;
            transform: translateX(5px);
        }
    }

    .services-sidebar {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: var(--space-16);
        padding-right: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .services-sidebar::-webkit-scrollbar {
        display: none;
    }

    .service-tab {
        white-space: nowrap;
        width: auto;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 12px 20px;
    }

    .service-tab.active::after {
        height: 3px;
        width: 60%;
        top: auto;
        bottom: 0;
        left: 20%;
    }

    .service-detail-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .mobile-scroll-hint span {
        font-size: 0.7rem;
    }
}

.premium-pulsing-list {
    margin-top: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    position: relative;
    z-index: 2;
    padding: 0;
    list-style: none;
}

.premium-pulsing-list li {
    display: block;
    position: relative;
    padding-left: 32px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

.premium-pulsing-list li strong {
    color: #fff;
    font-weight: 600;
}

.premium-pulsing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color, var(--accent-neon));
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color, var(--accent-neon));
    animation: bulletPulse 2s infinite alternate ease-in-out;
}

@keyframes bulletPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
        box-shadow: 0 0 5px var(--accent-color);
    }

    100% {
        transform: scale(2);
        opacity: 1;
        box-shadow: 0 0 15px var(--accent-color);
    }
}

@media (max-width: 768px) {
    .premium-pulsing-list li {
        font-size: 1.05rem;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }
}

#contact {
    position: relative;
    padding: calc(var(--section-padding-desktop) * 1.3) 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 120px;
    align-items: flex-start;
}

.contact-info-panel {
    position: sticky;
    top: 120px;
}

.contact-info-panel .section-title {
    text-align: left;
    margin-bottom: var(--space-24);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.05;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--space-48);
    max-width: 480px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-neon);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.05);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.04);
    border: 1px solid rgba(0, 245, 255, 0.08);
    border-radius: 12px;
    color: var(--accent-neon);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.contact-method-card:hover .method-icon {
    background: var(--accent-neon);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent-neon);
}

.method-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-details .method-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    line-height: 1.2;
}

.method-details .method-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.contact-form-premium {
    position: relative;
    z-index: 2;
}

.form-glass-container {
    background: rgba(10, 12, 31, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 56px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-group-premium {
    margin-bottom: 40px;
    position: relative;
}

.form-group-premium label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-neon);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.form-group-premium input,
.form-group-premium textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 0;
    border-radius: 0;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-neon);
    background: transparent;
    box-shadow: none;
    padding-left: 8px;
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.contact-actions {
    display: block;
    margin-top: 32px;
}

.submit-vibe {
    width: 100%;
    margin: 0;
    padding: 18px 32px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.site-footer {
    padding: 80px 0 40px;
    background: #040612;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.03) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.footer-glow.glow-1 {
    top: -200px;
    left: -100px;
}

.footer-glow.glow-2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    display: table;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-neon);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 700;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-col a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.threeway-link {
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.threeway-link:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

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

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-bottom: 120px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .contact-grid {
        gap: 60px;
    }
}

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

    .contact-info-panel {
        position: static;
        text-align: center;
    }

    .contact-info-panel .section-title,
    .contact-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-methods {
        max-width: 540px;
        margin: 0 auto;
    }

    .contact-method-card {
        text-align: left;
        justify-content: flex-start;
    }

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

@media (max-width: 640px) {
    .form-glass-container {
        padding: 40px 24px;
    }

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

    .submit-vibe,
    .cal-vibe {
        height: 56px;
    }
}

.hidden-field {
    display: none;
}