/* =========================
   CSS RESET & BASE STYLES
   ========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #161a20;
  color: #e7e7e7;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: #F9B233;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #ffffff;
}

ul, ol {
  list-style: none;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: #fff;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 15px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4 { font-size: 1.13rem; }

p {
  color: #b6bbc5;
  margin-bottom: 12px;
}

strong { color: #F9B233; font-family: inherit; font-weight: 600; }

/* Font loading fallback */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}

/* Custom blocks for cards and grids */
.card-container, .card-grid, .feature-grid, .content-grid, .news-articles-grid, .blog-posts-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}

.card {
  background: #20242b;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(10,20,35,0.13);
  border: 1px solid #232731;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.23s, border 0.16s;
}

.card:hover {
  box-shadow: 0 3px 18px 0 rgba(15, 30, 40, 0.23);
  border: 1px solid #F9B233;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
}

/* Features & Flex patterns */
.feature-item, .features-team ul li, .hero, .hero-news, .hero-blog, .hero-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.content-grid { gap: 20px; justify-content: space-between; }

/* Testimonials */
.testimonials {
  background: #21252e;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 26px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #1A3150;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(26,49,80,0.09);
  padding: 20px 24px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 230px;
  border-left: 5px solid #F9B233;
  transition: transform 0.18s, box-shadow 0.18s;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 30px rgba(26,49,80,0.19);
}

.testimonial-card p {
  color: #33353a;
  font-size: 1.03rem;
}

.testimonial-card strong {
  color: #F9B233;
  font-weight: 700;
  font-size: 1rem;
}

.user-scores {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #F9B233;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 8px;
}

.user-scores img {
  width: 38px;
  height: auto;
}

/* =========================
   NAVIGATION & HEADER
   ========================= */
header {
  width: 100%;
  background: #122031;
  border-bottom: 2px solid #232731;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}

header img {
  height: 32px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav a {
  color: #e4e9f1;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  transition: color 0.13s;
  border-bottom: 2px solid transparent;
  position: relative;
}

.main-nav a:hover, .main-nav a:focus {
  color: #F9B233;
  border-bottom: 2px solid #F9B233;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 26px;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,0,0,0.13);
  border: none;
  background: #232731;
  color: #F9B233;
  cursor: pointer;
  text-shadow: none;
  margin-left: 22px;
  transition: background 0.12s, color 0.18s, transform 0.16s, box-shadow 0.18s;
}

.cta-btn.primary {
  background: #F9B233;
  color: #1A3150;
  position: relative;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(26,49,80,0.13);
}

.cta-btn.primary:after {
  content: '';
  display: inline-block;
  background: url('assets/icons/icon-play.svg') no-repeat center center;
  width: 22px;
  height: 22px;
  background-size: 18px 18px;
  margin-left: 9px;
}

.cta-btn:hover, .cta-btn:focus {
  background: #1A3150;
  color: #F9B233;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px 0 rgba(26,49,80,0.21);
}

.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #d38b06;
  color: #fff;
}

/* =========================
   MOBILE NAVIGATION (BURGER MENU)
   ========================= */
.mobile-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #232731;
  color: #F9B233;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  margin-left: 20px;
  cursor: pointer;
  z-index: 121;
  transition: background 0.16s, color 0.16s;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F9B233;
  color: #1A3150;
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,26,32,0.97);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.49,.13,.44,.94);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  padding-left: 28px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 26px;
  background: #232731;
  color: #F9B233;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 222;
  transition: background 0.16s, color 0.16s;
}

.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F9B233;
  color: #1A3150;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 44px;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border 0.13s, background 0.14s;
  border-radius: 6px;
  width: 100%;
  display: block;
}

.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F9B233;
  background: #232731;
  border-bottom: 2px solid #F9B233;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 17px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .cta-btn { margin-left: 6px; padding: 9px 16px; }
}

@media (max-width: 820px) {
  .main-nav,
  .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    padding: 10px 8px;
  }
}

@media (min-width: 821px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* =========================
   HERO SECTIONS
   ========================= */
.hero, .hero-news, .hero-blog, .hero-contact {
  background: #212734;
  color: #fff;
  border-radius: 0 0 18px 18px;
  padding: 58px 0 44px 0;
  margin-bottom: 38px;
  display: flex;
}

.hero .container, .hero-news .container, .hero-blog .container, .hero-contact .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

input[type="text"] {
  background: #191f27;
  border: 1.5px solid #232731;
  color: #fff;
  font-size: 1rem;
  border-radius: 7px;
  padding: 12px 16px;
  width: 100%;
  max-width: 390px;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border 0.13s, box-shadow 0.16s;
}

input[type="text"]:focus {
  border: 1.5px solid #F9B233;
  box-shadow: 0 2px 12px 0 rgba(249,178,51,0.06);
}

/* =========================
   FEATURE & CARD GRIDS
   ========================= */
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid > div {
  background: #1A3150;
  padding: 22px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(10,20,35,0.12);
  border-top: 3px solid #F9B233;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 225px;
  max-width: 330px;
  flex: 1 1 225px;
  transition: border 0.14s, box-shadow 0.16s, background 0.14s, transform 0.15s;
  gap: 6px;
}
.feature-grid > div:hover {
  border-top: 3px solid #fff;
  background: #232c3b;
  box-shadow: 0 5px 20px rgba(26,49,80,0.19);
  transform: translateY(-3px) scale(1.04);
}
.feature-grid img {
  margin-bottom: 10px;
  width: 30px;
}
.feature-grid h3 {
  color: #F9B233;
  margin-bottom: 3px;
  font-size: 1.09rem;
}
.feature-grid p { color: #b6bbc5; }

/* =========================
   STATION CARDS (STACJE RADIOWE)
   ========================= */
.station-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 22px;
  width: 100%;
}
.station-card {
  background: #20242b;
  border-radius: 12px;
  border: 1.5px solid #232731;
  box-shadow: 0 1px 9px rgba(10,20,35,0.10);
  padding: 20px 18px 22px 18px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.16s, border 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.station-card h3 {
  color: #F9B233;
  font-size: 1.22rem;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.station-card span {
  color: #b6bbc5;
  font-size: 0.97rem;
  margin-bottom: 9px;
}
.station-card .cta-btn {
  margin-left: 0; margin-top: 11px;
}
.station-card:hover {
  border: 1.5px solid #F9B233;
  box-shadow: 0 5px 18px rgba(26,49,80,0.16);
  transform: translateY(-2px) scale(1.03);
}

.station-filters {
  display: flex;
  gap: 15px;
  margin: 12px 0 10px 0;
  flex-wrap: wrap;
}
.station-filters label {
  color: #b6bbc5;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.station-filters input[type="checkbox"] {
  accent-color: #F9B233;
}

.now-playing-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F9B233;
  font-weight: 500;
  background: #212a37;
  border-radius: 6px;
  padding: 9px 17px;
  margin-top: 9px;
}

/* =========================
   NEWS, BLOG, CONFIRMATION CARDS
   ========================= */
.news-articles-grid, .blog-posts-grid {
  gap: 24px;
  margin-top: 13px;
  margin-bottom: 8px;
}
.news-article, .blog-post {
  background: #20242b;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1.5px solid #232731;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px rgba(10,20,35,0.07);
  transition: box-shadow 0.18s, border 0.16s, transform 0.15s;
}
.news-article:hover, .blog-post:hover {
  border: 1.5px solid #F9B233;
  box-shadow: 0 4px 18px 0 rgba(26,49,80,0.13);
  transform: translateY(-2px) scale(1.04);
}
.news-article h3, .blog-post h3 {
  color: #F9B233;
  font-size: 1.14rem;
}
.news-article span, .blog-post span {
  color: #a1a5af;
  font-size: 0.94rem;
}
.news-article.featured-update {
  border-left: 5px solid #F9B233;
  box-shadow: 0 4px 16px 0 rgba(249,178,51,0.05);
  background: #232731;
}

.popular-tags {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  flex-wrap: wrap;
  margin-top: 8px;
  color: #F9B233;
}
.popular-tags span {
  background: #282d36;
  color: #fadb8a;
  font-size: 0.92rem;
  padding: 4px 11px;
  border-radius: 13px;
  margin-right: 5px;
}

/* Confirmation Section */
.confirmation .content-wrapper,
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.confirmation ul, .cta-section ul {
  margin: 18px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.confirmation li, .cta-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2px;
}

.cta-section {
  background: #1A3150;
  border-radius: 12px;
  padding: 40px 20px;
  margin-bottom: 60px;
  width: 100%;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #17202b;
  color: #a3adba;
  padding: 33px 0;
  border-top: 2px solid #232731;
  margin-top: 40px;
  font-size: 1em;
  box-shadow: 0 -2px 24px rgba(26,49,80,0.16);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 32px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F9B233;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline 1px #232731;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline 1.5px #fff;
}
.footer-contact {
  color: #a3adba;
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact img {
  height: 16px; width: auto; margin-right: 7px;
  filter: brightness(0.93) sepia(0.22) saturate(1.3);
  vertical-align: middle;
}
.footer-contact p {
  color: #a3adba;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #20242b;
  color: #fff;
  border-top: 2px solid #F9B233;
  box-shadow: 0 -2px 16px 0 rgba(26,49,80,0.23);
  z-index: 9999;
  padding: 22px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: cookieSlideUp 0.4s cubic-bezier(.37,.67,.29,1.25);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  min-width: 112px;
  margin-left: 8px;
  padding: 9px 16px;
  border-radius: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, box-shadow 0.17s;
}
.cookie-banner .cookie-btn.accept {
  background: #F9B233;
  color: #1A3150;
  box-shadow: 0 2px 8px 0 rgba(249,178,51,0.13);
}
.cookie-banner .cookie-btn.reject {
  background: #232731;
  color: #F9B233;
  border: 1.5px solid #F9B233;
}
.cookie-banner .cookie-btn.settings {
  background: #20242b;
  color: #F9B233;
  border: 1.5px solid #F9B233;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #1A3150;
  color: #F9B233;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%) scale(1);
  min-width: 330px;
  max-width: 93vw;
  background: #21252e;
  border-radius: 14px;
  color: #fff;
  z-index: 19999;
  box-shadow: 0 4px 32px 0 rgba(26,49,80,0.33);
  padding: 32px 26px 28px 26px;
  animation: fadeInCookieModal 0.3s cubic-bezier(.49,.13,.44,.94);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes fadeInCookieModal {
  0% { transform: translate(-50%, -54%) scale(0.9); opacity: 0; }
  100% { transform: translate(-50%, -54%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #F9B233;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #e7e7e7;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 7.5px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F9B233;
}
.cookie-modal .cookie-modal-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-modal .cookie-modal-btns {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal .essentials {
  color: #a3adba;
  font-size: 0.98rem;
  font-style: italic;
}

.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 24px;
  background: #232731;
  color: #F9B233;
  border: none;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 112;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F9B233;
  color: #1A3150;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1060px) {
  .container { max-width: 940px; }
}
@media (max-width: 900px) {
  .container { max-width: 720px; }
  .feature-grid > div, .station-card, .news-article, .blog-post {
    min-width: 160px;
    flex-basis: 160px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .section,
  .cta-section,
  .testimonials {
    padding: 27px 7px;
  }
  .feature-grid, .station-cards-grid, .card-container, .content-grid, .news-articles-grid, .blog-posts-grid, .testimonial-slider {
    gap: 16px;
  }
  .feature-grid > div, .station-card, .news-article, .blog-post, .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .footer-nav { flex-direction: column; align-items: flex-start; }
  footer .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-contact { margin-top: 7px; }
  .hero, .hero-news, .hero-blog, .hero-contact { padding: 40px 5px 33px 5px; border-radius: 0 0 10px 10px; }
  .content-wrapper { gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

@media (max-width: 540px) {
  .container { max-width: 97vw; padding: 0 4px; }
  .footer-nav { gap: 3px; }
  .card, .feature-grid > div, .station-card, .news-article, .blog-post, .testimonial-card { padding: 13px 7px; }
  .section, .cta-section, .testimonials { padding: 14px 2px; border-radius: 8px; }
}

/* =========================
   MISC UTILITY CLASSES
   ========================= */
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }

/* Hide outline except for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #F9B233;
  outline-offset: 2px;
}

/* =========================
   BRAND INDUSTRIAL MODERN EFFECTS
   ========================= */
/* Subtle metallic/steel border effect */
.card, .feature-grid > div, .station-card, .news-article, .blog-post, .testimonial-card {
  border-image: linear-gradient(90deg,#232731 60%,#626d7f 95%) 1;
}
hr {
  border: none;
  border-top: 2px solid #232731;
  margin: 32px 0;
}

/* Subtle urban/industrial BG for key sections */
.hero, .hero-news, .hero-blog, .hero-contact, .cta-section {
  background: linear-gradient(107deg, #212734 98%, #232731 100%);
  position: relative;
}
.hero:before, .cta-section:before {
  display: block;
  content: '';
  position: absolute;
  left: -8vw; top: -18px; height: 70px; width: 105vw;
  background: linear-gradient(96deg,rgba(249,178,51,0.07) 0%,rgba(26,49,80,0.14) 77%,transparent 95%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.testimonials {
  position: relative;
}
.testimonials:before {
  display: block;
  content: '';
  position: absolute;
  right: 0; top: 0; width: 78px; height: 100%;
  background: linear-gradient(99deg,rgba(249,178,51,0.08) 9%,transparent 83%);
  z-index: 1;
}

/* =========================
   RADIOPOL MODERN FONT EFFECTS
   ========================= */
h1,h2,h3,h4,h5,h6, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif !important;
  letter-spacing: 0.02em;
}

/* =========================
   ANIMATION AND INTERACTIVITY
   ========================= */
.card, .feature-grid > div, .station-card, .news-article, .blog-post, .testimonial-card, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  transition: all 0.15s cubic-bezier(.32,.52,.44,1.21);
}

.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active, .cookie-btn:active {
  transform: scale(0.97);
}

.card:hover, .feature-grid > div:hover, .station-card:hover, .news-article:hover, .blog-post:hover, .testimonial-card:hover {
  filter: brightness(1.04);
}

/* =========================
   SECTION SPACING RULES
   ========================= */
.section, .cta-section, .testimonials, .hero, .hero-news, .hero-blog, .hero-contact {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}
.card-container, .card-grid, .feature-grid, .content-grid, .news-articles-grid, .blog-posts-grid, .testimonial-slider, .station-cards-grid {
  gap: 24px !important;
}
.card, .feature-grid > div, .station-card, .news-article, .blog-post, .testimonial-card {
  margin-bottom: 20px !important;
}

/* Ensure proper flex-gap/margin on any other grid */
@media (max-width: 425px) {
  .container { padding: 0 3vw; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.12rem; }
}
