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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #111 0%, #232323 100%);
    color: #fff;
    line-height: 1.7;
    min-height: 100vh;
}

/* Header i nawigacja */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header.glass-header {
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
}

.logo img {
    height: 48px;
    filter: drop-shadow(0 0 8px #fff) brightness(2);
    background: transparent;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-left: 1.1rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 8px #fff2;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.2s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 60%;
    background: rgba(255,255,255,0.10);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    z-index: -1;
    filter: blur(2px);
}

.nav-links a:hover,
.nav-links a:focus {
    color: #e0e0e0;
}

.nav-links a:hover::before,
.nav-links a:focus::before {
    width: 120%;
}

/* Sekcja Hero */
.hero,
.hero.gradient-bg {
    margin-top: 90px;
    padding-top: 80px;
    min-height: 90vh;
    align-items: stretch;
    justify-content: center;
    padding: 8rem 2rem 2rem 2rem;
    background: linear-gradient(120deg, #232323 0%, #181818 100%);
    position: relative;
    overflow: hidden;
    display: block;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.10);
}

.hero.hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 6rem 4vw 2rem 4vw;
}

.hero-left {
    flex: 1 1 400px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 2vw;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: left;
    letter-spacing: 0.01em;
    line-height: 1.1;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4), 0 0 8px #fff2;
}

.gradient-text {
    background: linear-gradient(135deg, #00eaff 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-right {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    min-height: 180px;
}

.hero-visualization {
    background: linear-gradient(135deg, #232323 60%, #111 100%), url('../assets/grid.svg');
    background-size: cover, 340px 180px;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    position: relative;
    overflow: hidden;
    min-width: 340px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

/* Przyciski */
.btn, .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transition: 
        background 0.18s cubic-bezier(.4,0,.2,1),
        color 0.18s cubic-bezier(.4,0,.2,1),
        border 0.18s cubic-bezier(.4,0,.2,1),
        box-shadow 0.18s cubic-bezier(.4,0,.2,1);
    margin: 0.5rem;
    border: 1.5px solid #bdbdbd;
    cursor: pointer;
    background: #ededed;
    color: #232323;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
}

.btn:hover, .btn:focus, .btn-primary:hover, .btn-secondary:hover {
    background: #d1d5db;
    color: #181818;
    border-color: #a3a3a3;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
}

.btn-glass {
    background: linear-gradient(135deg, #232323 60%, #111 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.13);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    backdrop-filter: blur(8px);
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}

.btn-glass:hover, .btn-glass:focus {
    background: linear-gradient(135deg, #2d2d2d 60%, #181818 100%);
    color: #fff;
    border-color: #fff2;
    box-shadow: 0 8px 32px 0 rgba(255,255,255,0.10), 0 2px 0 0 #fff2 inset;
}

/* Sekcje */
.section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    border-radius: 18px;
    background: rgba(0,0,0,0.92);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
}

.section:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.section h2 {
    font-size: 2.7rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #fff;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.section.glass-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    border-radius: 22px;
    background: rgba(30,30,30,0.82);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.10);
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

.about-pillar {
    background: linear-gradient(135deg, #232323 60%, #111 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.13);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    backdrop-filter: blur(8px);
    padding: 2.2rem 1.5rem 1.2rem 1.5rem;
    text-align: left;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    overflow: hidden;
    border-radius: 20px;
}

.about-pillar:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(255,255,255,0.10), 0 2px 0 0 #fff2 inset;
    border-color: #fff2;
}

.about-pillar h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #00eaff;
    display: inline-block;
    padding-bottom: 0.2rem;
    background: linear-gradient(90deg, #00eaff 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-pillar p {
    color: #e0e0e0;
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #eaeaea;
}

/* Karty usług */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #232323 60%, #111 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.13);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    backdrop-filter: blur(8px);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 340px;
    min-width: 240px;
    text-align: left;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    overflow: hidden;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(255,255,255,0.10), 0 2px 0 0 #fff2 inset;
    border-color: #fff2;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #fff;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #00eaff;
    display: inline-block;
    padding-bottom: 0.3rem;
    background: linear-gradient(90deg, #00eaff 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Formularz kontaktowy */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.12);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1.05rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer.glass-footer {
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0 -2px 32px 0 rgba(0,224,255,0.07);
    border-top: 1.5px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius: 22px 22px 0 0;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1.5rem 2rem;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo img {
    height: 56px;
    filter: drop-shadow(0 0 8px #fff) brightness(2);
    margin-bottom: 0.5rem;
}

.footer-title {
    color: #fff;
    font-weight: 900 !important;
    font-size: 1.13rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.footer-contact div,
.footer-contact a {
    color: #eafcff;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #00eaff;
    text-decoration: underline;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.4rem;
}

.footer-nav a {
    color: #eafcff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: #00eaff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.01rem;
    margin-bottom: 0.7rem;
    opacity: 0.7;
    padding-bottom: 0.7rem;
}

/* Responsywność */
@media (max-width: 1100px) {
    .section.glass-section {
        max-width: 98vw;
    }
    .services-grid {
        gap: 1.2rem;
    }
    .hero.hero-split {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-visualization {
        min-width: 90vw;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .about-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .service-card {
        max-width: 98vw;
        min-width: unset;
    }
    .hero.hero-split {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-visualization {
        min-width: 90vw;
        margin: 0 auto;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    }
    .footer-logo img {
        margin-bottom: 1.2rem;
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header.glass-header, .footer.glass-footer {
        padding: 1.2rem 0.5rem;
    }
    .section.glass-section {
        padding: 2.2rem 0.5rem;
        margin-bottom: 2rem;
    }
    .about-content {
        padding: 0 0.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

.about-quote,
.services-quote {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    padding: 2.2rem 2.5rem 2.2rem 2.5rem;
    background: linear-gradient(120deg, rgba(0,224,255,0.07) 0%, rgba(40,40,60,0.13) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
    position: relative;
}

.about-quote blockquote,
.services-quote blockquote {
    margin: 0;
    padding-left: 2.2rem;
    font-size: 1.18rem;
    font-style: italic;
    color: #eafcff;
    line-height: 1.8;
    position: relative;
    border-left: 4px solid #00eaff;
    background: none;
}

@media (max-width: 700px) {
    .about-quote,
    .services-quote {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .about-quote blockquote,
    .services-quote blockquote {
        padding-left: 1rem;
        font-size: 1.05rem;
    }
}

.tech-section {
    background: linear-gradient(120deg, #181818 0%, #232323 100%);
    padding: 5rem 2rem 5rem 2rem;
    border-radius: 28px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    margin: 0 auto 4rem auto;
    max-width: 1100px;
}

.tech-section h2 {
    text-align: center;
    font-size: 2.7rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 24px #0008;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.tech-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.tech-tile {
    background: rgba(30, 30, 30, 0.92);
    border-radius: 18px;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.18);
    padding: 2.5rem 2rem 1.5rem 2rem;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, background 0.3s, border 0.3s;
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.10);
    cursor: pointer;
    overflow: hidden;
    will-change: box-shadow, background;
}

.tech-tile:hover {
    box-shadow: 0 8px 40px 0 #fff2, 0 2px 0 0 #fff1 inset;
    background: rgba(40,40,40,0.98);
    border-color: #fff2;
}

.tech-svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-svg svg .ai-main,
.tech-svg svg .ai-dot,
.tech-svg svg .speech-wave,
.tech-svg svg .speaker-main,
.tech-svg svg .speaker-dot,
.tech-svg svg .speaker-wave,
.tech-svg svg .nlp-wave,
.tech-svg svg .cloud-main,
.tech-svg svg .cloud-outline,
.tech-svg svg .cloud-arrow,
.tech-svg svg rect,
.tech-svg svg polygon,
.tech-svg svg ellipse {
    stroke: #fff !important;
    fill: #fff2 !important;
}

.tech-tile span {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
}

/* ANIMACJE SVG */
/* AI - pulsujące kropki */
.ai-dot {
    animation: ai-dot-pulse 3.2s infinite alternate;
    transform-origin: center;
}
.ai-dot:nth-child(2) { animation-delay: 0s; }
.ai-dot:nth-child(3) { animation-delay: 0.3s; }
.ai-dot:nth-child(4) { animation-delay: 0.6s; }
.ai-dot:nth-child(5) { animation-delay: 0.9s; }
@keyframes ai-dot-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.67); opacity: 0.7; }
}

/* Speech - przesuwająca się fala */
.speech-wave {
    stroke-dasharray: 80;
    stroke-dashoffset: 0;
    animation: speech-wave-move 4.5s linear infinite;
}
@keyframes speech-wave-move {
    0% { stroke-dashoffset: 80; }
    100% { stroke-dashoffset: 0; }
}

/* Speaker - pulsujący środek i fale */
.speaker-dot {
    animation: speaker-dot-pulse 3.2s infinite alternate;
}
@keyframes speaker-dot-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0.7; }
}
.speaker-wave {
    opacity: 0.7;
    animation: speaker-wave-move 4s infinite alternate;
}
.speaker-wave:last-child { animation-delay: 1s; }
@keyframes speaker-wave-move {
    0% { opacity: 0.7; }
    100% { opacity: 1; stroke-width: 3; }
}

/* Cloud - pulsujące chmury */
.cloud-pulse {
    animation: cloud-pulse 3.2s infinite alternate;
    transform-origin: center;
}
.cloud-pulse:first-child { animation-delay: 0s; }
.cloud-pulse:last-child { animation-delay: 1.1s; }
@keyframes cloud-pulse {
    0% { transform: scaleX(0.75); opacity: 0.7; }
    100% { transform: scaleX(1); opacity: 1; }
}

.nlp-wave {
    stroke-dasharray: 40;
    stroke-dashoffset: 0;
    animation: nlp-wave-move 4.2s linear infinite;
}
@keyframes nlp-wave-move {
    0% { stroke-dashoffset: 40; opacity: 0.7; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

.cloud-arrow {
    opacity: 0.8;
    transform-origin: center;
    animation: cloud-arrow-pulse 3.2s infinite alternate;
}
.cloud-arrow:nth-child(1) { animation-delay: 0s; }
.cloud-arrow:nth-child(2) { animation-delay: 0.4s; }
.cloud-arrow:nth-child(3) { animation-delay: 0.8s; }
.cloud-arrow:nth-child(4) { animation-delay: 1.2s; }

@keyframes cloud-arrow-pulse {
    0% { transform: scale(1) translateY(0); opacity: 0.8; }
    100% { transform: scale(1.18) translateY(-3px); opacity: 1; }
}

@media (max-width: 900px) {
    .tech-tiles {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .tech-tile {
        min-width: 90vw;
        max-width: 98vw;
    }
}

/* Hamburger menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 1rem;
}
.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20,20,20,0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.2rem 2rem;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
        border-radius: 0 0 18px 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 1001;
    }
    .nav-links.active {
        max-height: 400px;
        transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
    }
    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        font-size: 1.15rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about-columns {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
} 