/* ==============================
       CSS VARIABLES & BASE SETTINGS
    ============================== */

:root {
  --primary-color: #3668ff; /* CCM blue         */
  --dark-bg: #222; /* almost black     */
  --text-light: #fff; /* white/light text */
  --accent-color: #f1f4ff; /* super pale blue  */
  --accent-color-2: #dee5ff; /* regular pale blue  */
  --light-gray: #efefef; /* super pale gray  */
}
/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}
/* Body base styles */
body {
  font-family: "Inter", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}
/* Spacing for major structural elements */
header,
section,
footer {
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

/* Heading styles */
h1 {
  font-size: 2.5em;
  line-height: 1.2em;
  font-weight: 500;
  margin: 16px 0px;
}

h2 {
  font-size: 1.75em;
  line-height: 1em;
  font-weight: 600;
  margin: 16px 0px;
}

h3 {
  font-size: 1.3em;
  line-height: 1em;
  margin: 10px 0px;
  font-weight: 600;
}

/* Button and link styles */
.buttons-wrapper a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
}

a:hover {
  opacity: 0.85;
}

/* Navigation */
.navbar {
  background: var(--accent-color-2);
  padding: 0px;
  position: sticky;
  top: 0px;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  text-align: center;
}

nav .links a {
  margin: 5px 5px;
  text-decoration: none;
  color: var(--dark-bg);
  display: inline-block;
  font-weight: 500;
  padding: 5px 5px;
}

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

.links .outline {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--dark-bg);
  color: var(--text-light);
}

.links .outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Hero section layout */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(
    0deg,
    var(--accent-color) 0%,
    var(--accent-color-2) 100%
  );
}

.hero-text {
  flex: 1;
}

.hero img {
  max-width: 100%;
  height: auto;
  flex: 1;
  border-radius: 25px;
}

.hero {
  padding-top: 0px;
}
.hero ul {
  list-style: none;
  padding: 0;
}
.hero ul li {
  background: url("https://cdn.prod.website-files.com/65496b1500aed8ad52a5a1c6/65496b1500aed8ad52a5a25a_Yes.svg")
    no-repeat left center;
  background-size: 20px 20px;
  padding-left: 30px;
  margin: 10px 0;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  max-width: 1280px;
}
.hero-text,
.hero-image {
  flex: 1 1 48%;
  box-sizing: border-box;
  padding: 20px;
}
.hero-image img {
  width: 100%;
  height: auto;
}

/* Logo bar */

.customer-bar {
  padding: 20px 0px;
  background: var(--dark-bg);
  color: var(--light-gray);
  font-family:  "Merriweather", serif;
  font-size: 1.25rem;
}

.name-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  mask-image: linear-gradient(to left, transparent 2%, black 7%),
    linear-gradient(to right, transparent 2%, black 7%);
  mask-composite: intersect;
}

.name-strip {
  transform: translateX(0%);
}

.customer-name {
  display: inline-block;
  margin: 0 20px;
}

/* Feature, pricing, and industry section layout */
.features,
.pricing,
.industries {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.features div,
.pricing div,
.industries div {
  padding: 20px;
}

/* Features Section */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Hit Music Stations section */
.stations {
  text-align: center;
  background: var(--dark-bg);
  color: var(--text-light);
}
.station-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  max-width: 1024px;
  margin: 0 auto;
  gap: 30px 20px;
  padding: 20px 0;
  justify-items: center;
  text-align: center;
}
.station {
  text-align: center;
}
.station img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
}

.station-title {
  margin: 0px;
  font-size: 0.9em;
}

/* Plan grid layout */
.plans .plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  text-align: center;
  position: relative;
  justify-content: center;
}
.plans .plan {
  background: var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.plans .plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.plans .plan ul li {
  margin: 12px 0;
  line-height: 1.2em;
}
.plans .plan .button {
  box-sizing: border-box;

  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
}

.plan-name {
  color: var(--primary-color);
}

.plan p {
  margin-bottom: 0px;
}

.price {
  font-size: 2em;
  line-height: 1.1em;
}

.small-text {
  font-size: 0.8em;
  line-height: 1.25em;
  opacity: 0.65;
  margin-top: 5px;
}

.plan:nth-child(n + 4) {
  background: var(--light-gray) !important;
}

.plan:nth-child(n + 4) .button {
  background: var(--dark-bg) !important;
}

.plan:nth-child(n + 4) h3 {
  color: var(--dark-bg);
}

/* Industries section */

.industries .industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}


.industry-icon {
  font-size: 3em !important;
  color: var(--primary-color);
}

.industry-list img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.industry-list p {
  margin: 0px 0px;
}

/* Get Started section */

.get-started {
  background: var(--accent-color);
  text-align: center;
  padding-bottom: 0px;
}

.product-img {
  max-width: 1000px;
  width: 100%;
  margin-top: 20px;
}

/* Footer section */

footer {
  background: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
}
footer a {
  color: var(--text-light);
  margin: 5px 10px;
  text-decoration: none;
  display: inline-block;
  text-wrap: nowrap;
}

/* ==============================
   RESPONSIVE STYLES
   Adjust layout for different screen sizes
============================== */
@media (max-width: 1030px) {
  .plans .plan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .features,
  .industries .industry-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  nav .logo,
  nav .links {
    width: 100%;
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    padding: 10px;
  }

  .buttons-wrapper a {
    display: block;
    margin: 10px auto;
  }

  .plans .plan-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .industries .industry-list {
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
/* Footer */
footer {
	display: block;
	background: #000;
	bottom: 0;
}

footer .Footer {
	display: table;
	vertical-align: bottom;
	padding: 40px 20px;
	bottom: 0rem;
	margin: 0px auto 0;
}

.Footer__topMenu__item__link,
.Footer__topMenu__item__link:visited,
.Footer__copyrightText {
	font-weight: 500;
}

.Footer__topMenu__item__link,
.Footer__topMenu__item__link:visited {
	font-size: 13px;
	font-size: .75rem;
}

.Footer__copyrightText {
	font-size: 12px;
    font-size: .6rem;
    line-height: 16px;
    line-height: 1.75;
}

.Footer {
	position: relative;
	padding: 20px 0;
	padding: 2rem 0;
	text-align: center;
	margin: auto;
}

.Footer__topMenu {
	width: 100%;
	margin-bottom: 1rem;
}

.Footer__topMenu__item {
	line-height: 20px;
	line-height: 1.25rem;
	display: inline;
	margin-left: 20px;
	margin-left: 1.25rem;
}

.Footer__bottomMenu__item {
	display: inline-block;
}

.Footer__bottomMenu__item__link {
	color: #fff;
}

.Footer__pipe {
	display: inline-block;
	margin: 0 10px;
	margin: 0 1rem;
}

.Footer__topMenu__item__link,
.Footer__topMenu__item__link:visited {
	color: white;
}

.Footer__copyrightText {
	color: rgba(255, 255, 255, 0.85);
}	