/* 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, b, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #222831;
  color: #EEEEEE;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  color: #FFD369;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 16px;
  padding-left: 0;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; color: #FFD369; margin-bottom: 20px; }
h2 { font-size: 1.5rem; color: #FFD369; margin-bottom: 18px; }
h3 { font-size: 1.25rem; color: #FFD369; }
.subheadline {
  font-size: 1.1rem;
  color: #FFD369;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
}

p, li, address {
  font-size: 1rem;
  color: #EEEEEE;
  line-height: 1.6;
}
address {
  font-style: normal;
}

/* CONTAINER & SECTION LAYOUTS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232b36;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(21, 21, 23, 0.08);
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.text-section {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-wrapper,
  .card-container,
  .text-image-section,
  .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1.02rem; }
}

/* FLEX UTILS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232b36;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(34,36,49,0.12);
  padding: 28px;
  flex: 1 1 330px;
  min-width: 240px;
  transition: transform 0.2s cubic-bezier(.41,.65,.66,.13), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 30px rgba(255, 211, 105, 0.3);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #303848;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 211, 105, 0.08);
}

/* HEADER */
header {
  background: #232b36;
  position: sticky;
  top: 0;
  z-index: 97;
  box-shadow: 0 4px 32px rgba(34, 40, 49, 0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  color: #FFD369;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow .2s;
}
header nav a.cta {
  background: #FFD369;
  color: #232b36;
  box-shadow: 0 2px 16px rgba(255, 211, 105, 0.18);
  border: 0;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #FFBE2F;
  color: #232b36;
}
header nav a:hover,
header nav a:focus {
  background: #2C323F;
  color: #FFD369;
}

/* HEADER LOGO */
header img {
  height: 48px;
  width: auto;
  margin-right: 22px;
  vertical-align: middle;
  transition: filter 0.2s;
}
header img:hover {
  filter: brightness(1.2);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFD369;
  color: #222831;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD369;
  background: #FFBE2F;
}

@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #232b36;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.82,-0.03,0,1.04);
  box-shadow: 4px 0 32px rgba(34, 40, 49, 0.16);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2rem;
  color: #FFD369;
  border: none;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2001;
}
.mobile-menu-close:hover { color: #FFFFFF; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 0 0 28px;
  margin-bottom: 24px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  color: #FFD369;
  padding: 14px 16px 14px 0;
  border-radius: 0 16px 16px 0;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD369;
  color: #232b36;
}

/* MAIN SECTIONS, HERO */
main > section {
  margin-bottom: 0px;
  padding: 40px 0;
}
main > section .container {
  background: transparent;
  padding: 0;
}

/* BUTTONS, CTAs */
.cta, a.cta, button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: #232b36;
  background: #FFD369;
  border: none;
  border-radius: 16px;
  padding: 13px 32px;
  margin-top: 12px;
  box-shadow: 0 2px 18px rgba(255, 211, 105, 0.16);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 180ms, color 120ms, transform 0.13s cubic-bezier(.61,.51,.3,1.09), box-shadow 0.15s;
}
.cta:hover, .cta:focus {
  background: #FFBE2F;
  color: #12161E;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px rgba(255, 211, 105, 0.25);
}

/* LISTS WITH ICONS */
ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  font-size: 1rem;
}
ul li img {
  width: 27px;
  height: 27px;
  filter: brightness(1.1) saturate(1.2) drop-shadow(0 1px 2px #FFD36944);
}


/* TABLES (Prices Page) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  margin-top: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #232b36;
  color: #EEEEEE;
  border-radius: 14px;
  overflow: hidden;
}
thead th {
  background: #FFD369;
  color: #232b36;
  padding: 14px 8px;
  font-size: 1.1rem;
  font-family: 'Oswald', Arial, sans-serif;
  text-align: left;
}
tbody td {
  padding: 12px 8px;
  border-bottom: 1px solid #393F4C;
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: 0;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: #FFD369;
  color: #222831;
  border-radius: 17px;
  box-shadow: 0 3px 34px rgba(255, 211, 105, 0.18), 0 1px 6px rgba(34, 40, 49, 0.085);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: box-shadow 0.15s, transform 0.15s;
}
.testimonial-card p {
  color: #FFD369;
  font-style: italic;
  font-size: 1.11rem;
  margin-right: 16px;
  flex: 1 1 auto;
}
.testimonial-card span {
  color: #222831;
  font-style: normal;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px rgba(255, 211, 105, 0.29), 0 2px 12px rgba(34, 40, 49, 0.10);
  transform: scale(1.019);
}

/* FOOTER */
footer {
  background: #232b36;
  color: #FFD369;
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-top img {
  width: 56px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a,
footer a {
  color: #FFD369;
  font-family: 'Roboto', sans-serif;
  font-size: 0.98rem;
}
footer nav a:hover { color: #FFFFFF; text-decoration: underline; }
.footer-bottom {
  width: 100%;
  border-top: 1px solid #393F4C33;
  padding-top: 18px;
  text-align: left;
  color: #FFD369aa;
}
footer p, footer address {
  color: #FFD369;
  margin-bottom: 7px;
}
@media (max-width: 980px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    text-align: center;
  }
}

/* SPACING for all card/section - CRITICAL */
.card, .testimonial-card, .feature-item, .section, .content-grid > * {
  margin-bottom: 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  left: 0; right: 0;
  bottom: 0;
  background: #FFD369;
  color: #222831;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 16px;
  box-shadow: 0 -4px 24px rgba(34, 40, 49, 0.08);
  animation: cookie-slideup 0.5s cubic-bezier(.49,1.62,.59,1);
}
@keyframes cookie-slideup {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #222831;
  flex: 2 1 200px;
  margin-right: 12px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: #222831;
  color: #FFD369;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.12s;
  font-weight: 700;
}
.cookie-banner button.accept {
  background: #2337af;
  color: #FFD369;
}
.cookie-banner button.reject {
  background: #c70039;
  color: #FFFFFF;
}
.cookie-banner button.settings {
  background: #FFD369;
  color: #222831;
  border: 2px solid #222831;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD369;
  color: #222831;
  box-shadow: 0 2px 14px rgba(255, 211, 105, 0.19);
}
.cookie-banner button:active {
  background: #FFBE2F;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 40, 49, 0.84);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.4s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #FFD369;
  color: #232b36;
  border-radius: 17px;
  box-shadow: 0 4px 34px rgba(34, 40, 49, 0.37);
  padding: 32px 22px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-content-slidein 0.5s cubic-bezier(.49,1.62,.59,1);
}
@keyframes cookie-modal-content-slidein {
  from { transform: translateY(80px) scale(0.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #232b36;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
  margin-left: 0;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  color: #232b36;
}
.cookie-modal-content label {
  font-size: 1rem;
  color: #222831;
  margin-left: 4px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #222831;
  width: 18px;
  height: 18px;
  margin-top: 0;
}
.cookie-modal-content button.close-modal {
  background: #232b36;
  color: #FFD369;
  border-radius: 10px;
  border: none;
  font-size: 1.12rem;
  align-self: flex-end;
  padding: 8px 20px;
  cursor: pointer;
}
.cookie-modal-content button.save {
  background: #2337af;
  color: #FFD369;
  border-radius: 10px;
  border: none;
  font-size: 1.05rem;
  padding: 10px 26px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-content button.save:hover {
  background: #232b36;
  color: #FFD369;
}

/* ACCESSIBILITY: FOCUS VISIBLE */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #FFD369;
  outline-offset: 2px;
}

/* SCROLLBAR *//* Modern look only on desktop */
@media (min-width: 800px) {
  ::-webkit-scrollbar {
    width: 8px;
    background: #232b36;
  }
  ::-webkit-scrollbar-thumb {
    background: #FFD369;
    border-radius: 6px;
  }
}

/* DYNAMIC VISUAL EFFECTS */
.card, .feature-item, .testimonial-card, .cookie-banner {
  transition: box-shadow 0.22s cubic-bezier(.18,1.22,.44,1.09), transform 0.14s cubic-bezier(.72,.28,.57,1.23);
}

/* HIGH CONTRAST ENSURE TESTIMONIALS/REVIEW */
.testimonial-card,
.testimonial-card * {
  color: #FFD369 !important;
  background: none !important;
}

/* MEDIA RESPONSIVENESS */
@media (max-width: 620px) {
  .container, header .container, footer .container { padding: 0 7px !important; }
  .section { padding: 18px 5px; }
  .card, .feature-item, .testimonial-card { padding: 18px 10px; }
}

/* Animations for micro-interactions */
.cta, button, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.16s, color 0.16s, transform 0.14s cubic-bezier(.68,.08,.29,1.12), box-shadow 0.15s;
}
.cta:active, button:active, .mobile-menu-close:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}

/* Hide cookie modal on desktop if not open */
.cookie-modal:not(.open) {
  display: none !important;
}

/* Misc */
::-moz-selection { background: #FFD369; color: #232b36; }
::selection { background: #FFD369; color: #232b36; }

/* END OF CSS */
