:root {
    --primary-color: #00a9e0; --secondary-color: #008cba; --gradient-start: #00a9e0; --gradient-end: #006cbf; --text-color-dark: #2c3e50; --text-color-light: #f8f9fa; --text-color-muted: #6c757d; --bg-light: #ffffff; --bg-section: #f8f9fa; --border-color: #e9ecef; --shadow: 0 4px 15px rgba(0, 0, 0, 0.08); --border-radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-color-dark); background-color: var(--bg-light); line-height: 1.6; }
body.body-no-scroll { overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.section-subtitle { text-align: center; color: var(--text-color-muted); font-size: 1.1rem; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pre-title { text-align: center; color: var(--primary-color); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
header { background: var(--bg-light); border-bottom: 1px solid var(--border-color); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; text-decoration: none; color: var(--primary-color); }
.logo i { margin-right: 8px; }
.nav-menu-desktop { list-style: none; display: flex; align-items: center; }
.nav-menu-mobile { display: none; }
.nav-item { margin: 0 15px; }
.nav-link { text-decoration: none; color: var(--text-color-dark); font-weight: 500; }
.nav-link:hover { color: var(--primary-color); }
.nav-actions { display: flex; align-items: center; }
.btn { padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-secondary { background: transparent; color: var(--primary-color); margin-right: 10px; }
.btn-secondary:hover { background: #e6f7ff; }
.btn-primary { background-image: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); color: var(--text-color-light); box-shadow: 0 4px 10px rgba(0, 169, 224, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 169, 224, 0.4); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }
#hero { padding: 100px 0; background: linear-gradient(45deg, rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="1000" height="1000"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%2300a9e0" /><stop offset="100%" stop-color="%23006cbf" /></linearGradient></defs><g fill="url(%23g)" fill-opacity="0.05"><circle cx="50" cy="50" r="40" /><circle cx="20" cy="80" r="20" /><circle cx="90" cy="10" r="15" /><path d="M 0 0 L 100 100" stroke="url(%23g)" stroke-width="1" stroke-opacity="0.1" /><path d="M 100 0 L 0 100" stroke="url(%23g)" stroke-width="1" stroke-opacity="0.1" /></g></svg>'); background-size: cover; text-align: center; }
#hero .container { max-width: 800px; }
.hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; background: -webkit-linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-color-muted); margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-cta .btn { font-size: 1.1rem; padding: 15px 35px; }
#logos { padding: 60px 0; background-color: var(--bg-section); position: relative; overflow: hidden; }
#logos::before, #logos::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
#logos::before { left: 0; background: linear-gradient(to right, var(--bg-section), transparent); }
#logos::after { right: 0; background: linear-gradient(to left, var(--bg-section), transparent); }
.logos-title { text-align: center; font-size: 1.1rem; font-weight: 500; color: var(--text-color-muted); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }
.logo-carousel { display: flex; white-space: nowrap; animation: scroll 40s linear infinite; }
.logo-carousel:hover { animation-play-state: paused; }
.logo-carousel-set { display: flex; align-items: center; }
.logo-carousel img { height: 40px; width: auto; max-width: 150px; margin: 0 35px; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease; }
.logo-carousel img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
#integration-showcase { padding: 100px 0; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.showcase-panel { border-radius: 24px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.showcase-panel h2 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 15px; }
.showcase-panel p { font-size: 1.1rem; max-width: 450px; margin-bottom: 30px; }
.panel-light { background-color: var(--bg-section); border: 1px solid var(--border-color); }
.panel-dark { background-color: #1a1a1e; color: var(--text-color-light); }
.panel-dark p { color: #a0a0b0; }
.panel-media { margin-top: auto; display: flex; justify-content: center; }
.responsive-image { width: 100%; max-width: 450px; height: auto; border-radius: var(--border-radius); display: block; }
.showcase-video-card { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1 / 1; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
#use-cases { padding: 100px 0; background-color: var(--bg-section); }
.use-cases-container { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; margin-top: 60px; }
.use-cases-nav { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.tab-item { padding: 20px; border-radius: var(--border-radius); cursor: pointer; position: relative; transition: background-color 0.3s ease; border-left: 4px solid transparent; }
.tab-item:hover { background-color: var(--bg-light); }
.tab-item h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-color-muted); transition: color 0.3s ease; }
.tab-item.active h3 { color: var(--primary-color); }
.tab-item.active { background-color: #e6f7ff; border-left: 4px solid var(--primary-color); }
.tab-description { display: none; margin-top: 10px; color: var(--text-color-dark); font-size: 0.95rem; line-height: 1.5; }
.tab-item.active .tab-description { display: block; }
.use-cases-content { position: relative; min-height: 450px; }
.tab-content { display: none; opacity: 0; transition: opacity 0.4s ease-in-out; }
.tab-content.active { display: block; opacity: 1; }
.use-case-video-card { position: relative; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid var(--border-color); height: 450px; }
#smart-tools { padding: 100px 0; }
.feature-grid { margin-top: 80px; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
@media (min-width: 993px) { .feature-block.reverse { grid-template-areas: "content image"; } .feature-block.reverse .feature-content { grid-area: content; } .feature-block.reverse .feature-image { grid-area: image; } }
.feature-image img { width: 100%; border-radius: var(--border-radius); box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 40px rgba(0, 169, 224, 0.1); }
.feature-label { display: inline-block; color: var(--primary-color); font-weight: 600; margin-bottom: 15px; }
.feature-content h3 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.feature-content p { color: var(--text-color-muted); font-size: 1.1rem; margin-bottom: 30px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { display: flex; align-items: center; margin-bottom: 15px; font-weight: 500; }
.feature-list li i { color: var(--secondary-color); font-size: 1.2rem; margin-right: 12px; }
#video-testimonials { padding: 100px 0; background-color: var(--bg-section); }
.testimonials-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; }
.testimonial-video-card { position: relative; border-radius: 24px; overflow: hidden; min-height: 550px; box-shadow: var(--shadow); cursor: pointer; }
.card-video, .thumbnail-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.thumbnail-img { z-index: 2; }
.card-video { z-index: 1; }
.card-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); color: white; transition: opacity 0.3s ease; }
.quote { font-size: 1.3rem; font-weight: 600; line-height: 1.4; margin-bottom: 20px; }
.author-name { display: block; font-weight: 600; }
.author-title { font-size: 0.9rem; opacity: 0.8; }
.before-text { position: absolute; top: 30px; left: 30px; z-index: 4; background: rgba(255,255,255,0.9); color: var(--text-color-dark); padding: 8px 16px; border-radius: 8px; font-weight: 700; transition: opacity 0.3s ease, transform 0.3s ease; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); z-index: 4; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; font-size: 2rem; color: var(--text-color-dark); cursor: pointer; opacity: 0; transition: all 0.3s ease; }
.testimonial-video-card:hover .thumbnail-img, .showcase-video-card:hover .thumbnail-img, .use-case-video-card:hover .thumbnail-img { opacity: 0; }
.testimonial-video-card:hover .before-text { opacity: 0; transform: translateY(-10px); }
.testimonial-video-card:hover .play-button, .showcase-video-card:hover .play-button, .use-case-video-card:hover .play-button { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.is-playing .card-overlay, .is-playing .play-button, .is-playing .before-text { opacity: 0; pointer-events: none; }
.is-playing .card-video { z-index: 5; cursor: pointer; }
.is-playing { z-index: 990; }
.awards-container { margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.award-group h4 { font-weight: 600; margin-bottom: 20px; }
.badges { display: flex; justify-content: center; gap: 15px; }
.badge { border: 1px solid var(--border-color); padding: 10px; border-radius: var(--border-radius); background: #fdfdff; font-size: 0.85rem; line-height: 1.3; min-width: 80px; }
#all-features { padding: 100px 0; background: linear-gradient(180deg, var(--bg-light) 0%, #f0faff 100%); }
.features-grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.feature-item { background: rgba(255, 255, 255, 0.8); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 20px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 120px; }
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-item i { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 15px; }
.feature-item span { font-weight: 500; font-size: 0.9rem; line-height: 1.3; }
.feature-item-large { grid-column: span 2; grid-row: span 2; position: relative; overflow: hidden; color: white; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; text-align: left; border-radius: var(--border-radius); min-height: 260px; }
.feature-item-large img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.4s ease; }
.feature-item-large:hover img { transform: scale(1.05); }
.feature-item-large .content { position: relative; z-index: 2; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 80%); width: 100%; }
.feature-item-large h3 { font-size: 1.8rem; margin-bottom: 5px; }
.feature-item-large i { color: white; margin-right: 10px; font-size: 1.5rem; }
.features-center-cta { text-align: center; grid-column: 1 / -1; margin-top: 40px; }
#trust-banner { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 40px 0; }
.trust-banner-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-color-muted); }
.trust-item i { font-size: 1.5rem; color: var(--primary-color); }
#footer { background-color: var(--text-color-dark); color: var(--text-color-light); padding: 80px 0 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 30px; padding-bottom: 40px; }
.footer-column h4 { font-size: 1rem; font-weight: 600; margin-bottom: 15px; color: var(--bg-light); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a, .footer-column p { text-decoration: none; color: var(--text-color-muted); font-size: 0.9rem; }
.footer-column ul li a:hover { color: var(--primary-color); text-decoration: underline; }
.footer-logo { color: var(--bg-light); margin-bottom: 15px; display: inline-block; }
.footer-brand p { max-width: 250px; }
.footer-address { justify-self: end; text-align: right; }
.footer-bottom { border-top: 1px solid #4a5a6a; padding: 25px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-color-muted); }
.legal-links a { color: var(--text-color-muted); text-decoration: none; margin-left: 20px; }
.legal-links a:hover { color: var(--primary-color); }
.page-header { background-color: var(--bg-section); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 3rem; font-weight: 700; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; color: var(--text-color-muted); max-width: 700px; margin: 0 auto; }
.features-page-container { display: grid; grid-template-columns: 280px 1fr; gap: 50px; padding-top: 60px; padding-bottom: 60px; }
.features-nav { position: sticky; top: 100px; align-self: start; height: calc(100vh - 120px); overflow-y: auto; }
.features-nav h3 { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
.features-nav ul { list-style: none; }
.features-nav li a { display: block; text-decoration: none; color: var(--text-color-dark); font-weight: 500; padding: 10px 15px; border-radius: 8px; transition: all 0.3s ease; border-left: 3px solid transparent; }
.features-nav li a:hover { background-color: #e6f7ff; color: var(--primary-color); }
.features-nav li a.active { background-color: #e6f7ff; color: var(--primary-color); border-left: 3px solid var(--primary-color); }
.features-content section { margin-bottom: 80px; scroll-margin-top: 100px; }
.features-content h2 { font-size: 2.2rem; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; }
.features-content h2 i { margin-right: 15px; color: var(--primary-color); font-size: 1.8rem; }
.features-content h3 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 20px; }
.feature-detail-list { list-style: none; padding-left: 10px; }
.feature-detail-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1rem; }
.feature-detail-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--secondary-color); position: absolute; left: 0; top: 2px; font-size: 1.1rem; }
.cta-section { background-color: var(--bg-section); border-radius: var(--border-radius); padding: 50px; text-align: center; }
.cta-section h2 { border-bottom: none; justify-content: center; }
.cta-section p { color: var(--text-color-muted); margin-bottom: 30px; }
.contact-page-container { display: grid; grid-template-columns: minmax(0, 2fr) 1fr; align-items: start; gap: 50px; padding: 80px 0; }
.contact-form h2 { font-size: 2rem; margin-bottom: 30px; }
.hubspot-form-container { margin-top: 30px; }
.contact-info-panel { background-color: var(--bg-section); padding: 30px; border-radius: var(--border-radius); height: fit-content; position: sticky; top: 100px; }
.contact-info-panel h3 { font-size: 1.5rem; margin-bottom: 20px; }
.info-steps { list-style: none; margin-bottom: 30px; }
.info-steps li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.info-steps li i { color: var(--primary-color); font-size: 1.2rem; }
.direct-contact { border-top: 1px solid var(--border-color); padding-top: 20px; }
.direct-contact a { color: var(--text-color-dark); text-decoration: none; font-weight: 500; display: block; margin-top: 10px; }
.direct-contact a:hover { color: var(--primary-color); }
.ecosystem-info { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.ecosystem-info p { margin-bottom: 20px; }
.ecosystem-info a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.ecosystem-info a:hover { text-decoration: underline; }
.ecosystem-list { list-style: none; }
.ecosystem-list li { display: flex; gap: 15px; margin-bottom: 15px; }
.ecosystem-list li i { color: var(--secondary-color); font-size: 1.2rem; margin-top: 4px; }
.ecosystem-list strong a { color: var(--text-color-dark); }
.company-details { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 0.85rem; color: var(--text-color-muted); line-height: 1.5; }
.company-details h4 { font-size: 1rem; color: var(--text-color-dark); margin-bottom: 10px; }
.mission-section { padding: 100px 0; }
.mission-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-content .pre-title { text-align: left; }
.mission-content h1 { font-size: 3rem; margin-bottom: 20px; }
.mission-content .underline { width: 60px; height: 4px; background-color: var(--primary-color); margin-bottom: 30px; }
.mission-content p { color: var(--text-color-muted); margin-bottom: 20px; }
.mission-quote-card { background-color: var(--bg-light); padding: 50px; border-radius: var(--border-radius); box-shadow: var(--shadow); position: relative; background-image: radial-gradient(var(--border-color) 1px, transparent 1px); background-size: 20px 20px; }
.mission-quote-card h2 { font-size: 3.5rem; line-height: 1.2; font-weight: 700; }
.mission-quote-card h2 span { color: var(--primary-color); }
.motto-banner { padding: 80px 0; text-align: center; background-image: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)); color: white; }
.motto-banner h2 { font-size: 2.5rem; font-weight: 600; max-width: 800px; margin: 0 auto; line-height: 1.6; }
.values-section { padding: 100px 0; background-color: var(--bg-section); }
.values-section h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.value-card { background-color: var(--bg-light); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); border: 1px solid var(--border-color); }
.value-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.value-card p { color: var(--text-color-muted); }
.partners-section { padding: 100px 0; }
.partners-section h2 { text-align: center; margin-bottom: 60px; }
.partners-list { list-style: none; column-count: 2; column-gap: 40px; }
.partners-list li { margin-bottom: 20px; font-size: 1.1rem; break-inside: avoid; }
.partners-list li strong { display: block; }
@media (max-width: 992px) {
    .nav-menu-desktop, .nav-actions { display: none; }
    .hamburger { display: block; z-index: 1001; }
    .nav-menu-mobile { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(5px); z-index: 1000; transition: right 0.35s ease-in-out; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; }
    .nav-menu-mobile.active { right: 0; }
    .nav-menu-mobile .nav-link { font-size: 1.8rem; font-weight: 600; }
    .nav-menu-mobile .btn-primary { font-size: 1.8rem; padding: 15px 40px; width: auto; }
    body.body-no-scroll { overflow: hidden; }
    .features-page-container { grid-template-columns: 1fr; }
    .features-nav { position: static; height: auto; overflow-y: visible; margin-bottom: 50px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
    .contact-page-container { grid-template-columns: 1fr; }
    .contact-info-panel { position: static; margin-top: 40px; }
    .showcase-grid, .use-cases-container, .feature-block { grid-template-columns: 1fr; }
    .feature-content h3 { font-size: 2rem; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand, .footer-address { grid-column: 1 / -1; margin-bottom: 20px; text-align: left; justify-self: start; }
    .features-grid-container { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .feature-item-large { grid-column: span 2; }
    .mission-section .container { grid-template-columns: 1fr; }
    .mission-quote-card h2 { font-size: 2.5rem; }
    .partners-list { column-count: 1; }
}
@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .features-content h2 { font-size: 1.8rem; }
    .features-content h3 { font-size: 1.3rem; }
    .hero-title, .showcase-panel h2 { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    #hero, #smart-tools, #video-testimonials, #all-features { padding: 80px 0; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-address { text-align: center; justify-self: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .legal-links { margin-left: 0; }
    .awards-container { grid-template-columns: 1fr; }
    .testimonial-video-card { min-height: 500px; }
    .feature-item-large { grid-row: span 1; min-height: 200px; }
    .mission-content h1 { font-size: 2.5rem; }
    .motto-banner h2 { font-size: 2rem; }
    #logos::before, #logos::after { width: 50px; }
    .showcase-panel { padding: 30px; }
    .showcase-panel h2 { font-size: 2.2rem; }
	.cta-section .btn-primary, .hero-cta .btn-primary {
    padding-left: 20px;
    padding-right: 20px;
    white-space: normal; /* Pozwala tekstowi wewnątrz przycisku na zawijanie */
    line-height: 1.4; /* Poprawia czytelność zawiniętego tekstu */
	}
@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .feature-item-large { grid-column: span 2; }
    .showcase-panel { padding: 25px; }
}