/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
}
body {
  background: #EDEDED;
  color: #24272A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #24272A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6C700;
  outline: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
ul, ol {
  list-style-type: none;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: #24272A;
  color: #EDEDED;
  box-shadow: 0 2px 6px rgba(36,39,42,0.04);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  padding: 10px 0;
}
.main-nav a {
  color: #EDEDED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 28px;
  transition: background 0.15s, color 0.2s;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.01em;
}
.main-nav a.cta-primary {
  background: #F6C700;
  color: #24272A;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 2px 14px rgba(246,199,0,.18);
  border-radius: 30px;
  padding: 10px 26px;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #ffd700;
  color: #24272A;
  box-shadow: 0 4px 20px rgba(246,199,0,.29);
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6C700;
  color: #24272A;
}
.main-nav img {
  height: 44px;
  width: auto;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}
.mobile-menu-toggle {
  display: none;
  background: #F6C700;
  color: #24272A;
  font-size: 2.1rem;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin-left: auto;
  margin-right: 0px;
  z-index: 1052;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(246,199,0,0.08);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffd700;
  box-shadow: 0 4px 14px rgba(246,199,0,0.16);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #24272A;
  z-index: 1055;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.77,.2,.23,1) 0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 28px 8px rgba(36,39,42,0.76);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  background: #F6C700;
  color: #24272A;
  font-size: 2.1rem;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(246,199,0,.15);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ffd700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: center;
  margin-top: 16px;
}
.mobile-nav a {
  color: #EDEDED;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.045em;
  font-weight: 800;
  padding: 14px 0;
  width: 90%;
  border-radius: 18px;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #24272A;
  background: #F6C700;
}

/* HERO SECTION */
.hero {
  background: #24272a;
  color: #F6C700;
  padding: 70px 0 50px 0;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 8px 40px 8px rgba(36,39,42,0.08);
  min-height: 300px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 650px;
}
.hero h1 {
  color: #F6C700;
  font-size: 2.4rem;
  font-weight: 900;
  text-shadow: 0 2px 16px #24272A;
  margin: 0;
}
.hero p {
  color: #fffde6;
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-weight: 500;
}
.hero .cta-primary {
  margin-top: 12px;
  font-size: 1.13rem;
  border-radius: 32px;
  box-shadow: 0 2px 14px #F6C70051;
  padding: 13px 32px;
}

/* FLEX LAYOUTS / UTILITY SECTIONS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(36,39,42,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(36,39,42,0.07);
  padding: 24px 28px 24px 24px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 580px;
  font-size: 1.04rem;
  color: #24272A;
}
.testimonial-card p {
  font-style: italic;
  font-weight: 500;
  color: #24272A;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #F6C700;
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card div {
  color: #24272A;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: 0.09em;
}

/* SECTION HEADINGS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
section:last-child {
  margin-bottom: 0;
}

.container > h2,
section > h2 {
  color: #24272A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* LISTS WITH ICONS */
ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 0 6px 0;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
ul li img {
  height: 28px;
  width: 28px;
  display: inline-block;
}
ul li:last-child {
  margin-bottom: 0;
}

/* PRICING BADGES */
ul li span {
  background: #F6C700;
  color: #24272A;
  border-radius: 12px;
  padding: 3px 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.94em;
  margin-left: 12px;
}

/**** BUTTONS & CTAs ****/
.cta-primary {
  background: #F6C700;
  color: #24272A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 30px;
  box-shadow: 0 2px 14px #F6C70038;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #24272A;
  color: #F6C700;
  box-shadow: 0 4px 20px #24272A45;
  transform: translateY(-2px) scale(1.03);
}

/**** FOOTER ****/
footer {
  background: #24272A;
  color: #EDEDED;
  padding: 38px 0 32px 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 60px;
}
footer nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 7px;
}
footer nav a {
  color: #F6C700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 1em;
  transition: background 0.13s, color 0.17s;
}
footer nav a:hover,
footer nav a:focus {
  background: #F6C700;
  color: #24272A;
}
footer div {
  font-size: 1em;
  color: #fffde9;
  font-weight: 500;
  margin-top: 13px;
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 7px;
    font-size: 0.98rem;
  }
  .main-nav img {
    height: 38px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 920px) {
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 38px 0 24px 0;
    min-height: 180px;
  }
  section {
    padding: 32px 8px 0 8px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  .card-container {
    gap: 12px;
  }
  .testimonial-card {
    padding: 16px 8px 16px 14px;
    font-size: 0.98em;
    gap: 13px;
  }
  .card {
    padding: 16px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/**** VIBRANT/ENERGETIC VISUAL EFFECTS ****/
.hero {
  /* slight electric edge at bottom */
  border-bottom: 5px solid #F6C700;
  background: linear-gradient(110deg, #24272A 80%, #F6C70013 100%);
}
.card, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.19s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px #F6C70045, 0 1.5px 5px #24272a12;
  transform: translateY(-4px) scale(1.025);
}
.cta-primary:active {
  transform: scale(0.97);
}

/**** COOKIES CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #24272A;
  color: #F6C700;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 24px rgba(36,39,42,0.18);
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieBannerIn 0.64s cubic-bezier(.77,.2,.23,1) 0s both;
}
@keyframes cookieBannerIn {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  font-size: 1rem;
  font-weight: 600;
  color: #F6C700;
  margin-bottom: 18px;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 24px;
  box-shadow: 0 1.5px 4px #24272A35;
  margin: 0 2px;
  margin-bottom: 4px;
  border: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s, transform 0.12s;
}
.cookie-banner .accept-btn {
  background: #F6C700;
  color: #24272A;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #FFD700;
}
.cookie-banner .settings-btn {
  background: #24272A;
  border: 2px solid #F6C700;
  color: #F6C700;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #F6C700;
  color: #24272A;
}
.cookie-banner .reject-btn {
  background: #EDEDED;
  color: #24272A;
  border: 2px solid #F6C700;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #ffd700;
  color: #24272A;
}

/**** COOKIES SETTINGS MODAL ****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 1202;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,39,42,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayAppear 0.4s cubic-bezier(.77,.2,.23,1) 0s both;
}
@keyframes overlayAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #24272A;
  border-radius: 24px;
  max-width: 420px;
  width: 96%;
  box-shadow: 0 8px 48px 2px #24272A55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 19px 22px;
  position: relative;
  animation: modalAppear 0.36s cubic-bezier(.77,.2,.23,1) 0s both;
}
@keyframes modalAppear {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.26em;
  font-weight: 800;
  margin-top: 0;
  color: #F6C700;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 1.6em;
  color: #24272A;
  background: #F6C700;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1210;
  transition: background .16s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #ffd700;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: #24272A;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
  justify-content: flex-end;
}

/**** MICROINTERACTIONS and ACCESSIBLE FOCUS ****/
a, button, .cta-primary, input, select, textarea {
  outline-color: #F6C700;
  outline-width: 2.5px;
  outline-offset: 1px;
}
:focus-visible {
  outline: 2.5px solid #F6C700 !important;
  outline-offset: 1.2px;
}

/**** MISC SPACING PATTERNS ****/
.card-container {
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/**** Z-INDEX and OVERLAP SAFEGUARDS ****/
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 1200;
}

/**** CUSTOM SCROLLBAR ****/
::-webkit-scrollbar {
  width: 8px;
  background: #f6f6fa;
}
::-webkit-scrollbar-thumb {
  background: #F6C70099;
  border-radius: 8px;
}

/* END OF CSS */
