/* RESET AND 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, menu, 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,
main, 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;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  background: #232630;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #DCD2BC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #E86C32;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 5px #E86C32b8;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px #E86C3248;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong {
  color: #E86C32;
}
small {
  font-size: 0.97em;
  color: #9EA3B0;
}

/* LAYOUT UTILITIES & CONTAINERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(36,40,55,0.97);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 #22263a12;
  position: relative;
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: linear-gradient(120deg,#30344A 50%,#1C1D23 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 10px 40px 0 #22263a2c;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 50px;
  position: relative;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
}
.hero p {
  color: #DCD2BC;
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.hero .cta-button {
  font-size: 1.15rem;
}

/* FLEXBOX GRIDS & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #262936;
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 #E86C3250, 0 1px 5px #22263a0a;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  max-width: 100%;
  padding: 28px 24px;
  border: 1.5px solid #323545;
}
.card:hover,
.feature-item:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 36px 0 #E86C32a2, 0 2px 12px #23263030;
}
.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;
  background: #25293A;
  border: 1px solid #323545;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 2px 18px 0 #E86C3225, 0 1px 2px #191a2016;
  transition: transform 0.23s, box-shadow 0.24s;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px #E86C32bb);
  margin-bottom: 12px;
  border-radius: 50%;
  background: #ECE5DD22;
}
.feature-item h3 {
  color: #fff;
  font-size: 1.1rem;
}
.feature-item p {
  color: #DCD2BC;
  font-size: 0.99rem;
}

.cta-section {
  border: 0;
  background: linear-gradient(110deg, #E86C32 12%, #343844 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 32px #E86C325f;
  margin-bottom: 50px;
}
.cta-section .cta-button {
  background: #fff;
  color: #E86C32;
  border: 2px solid #fff;
  margin-top: 22px;
}
.cta-section h2, .cta-section p {
  color: #fff;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TESTIMONIALS */
.testimonials-section,
.tips-section, .blog-topics {
  margin-bottom: 48px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #232630;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px 0 #E86C3235;
  border-left: 6px solid #E86C32;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  font-size: 0.98em;
  margin-left: 16px;
  color: #232630;
}
.testimonial-card p {
  color: #232630;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #E86C32;
  font-weight: 600;
}

/* BUTTONS & CTAs */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 13px 28px;
  background: #E86C32;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 #E86C3266;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.14s;
  outline: none;
  margin-top: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: #232630;
  color: #E86C32;
  box-shadow: 0 4px 24px #E86C32a1, 0 1px 6px #23263044;
  transform: scale(1.04);
}

button {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  background: none;
  outline: none;
  cursor: pointer;
}

/* HEADER */
header {
  z-index: 40;
  background: #22242f;
  position: sticky;
  top: 0;
  padding: 0;
  min-height: 82px;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px #E86C3248);
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 24px;
  align-items: center;
  font-size: 1rem;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E86C32;
  color: #fff;
  box-shadow: 0 2px 12px #E86C3235;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #E86C32;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 15px;
  padding: 6px 16px;
  margin-left: 12px;
  z-index: 33;
  box-shadow: 0 2px 16px #E86C3266;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #232630;
  color: #E86C32;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg, #232630 80%, #E86C32 100%);
  box-shadow: 0 0 32px #E86C32a4;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.55,.11,.7,1.15);
  will-change: transform;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 12px 0;
  background: #fff;
  color: #E86C32;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 16px #E86C3236;
  cursor: pointer;
  transition: background 0.13s, color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E86C32;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  padding: 11px 0;
  border-radius: 9px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: 100%;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #E86C32;
  box-shadow: 0 2px 12px #E86C3242;
}

/* FOOTER */
footer {
  background: #191a22;
  color: #DCD2BC;
  border-top: 2px solid #E86C32;
  font-size: 1em;
  padding: 0;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #E86C32;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1em;
  padding: 4px 10px;
  border-radius: 9px;
  transition: color 0.2s, background 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E86C32;
  color: #fff;
}
.footer-info {
  color: #DCD2BC;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0.98;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #232630;
  color: #fff;
  z-index: 1050;
  box-shadow: 0 -2px 28px #E86C325b;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 24px 16px;
  font-size: 1.05em;
  justify-content: center;
}
.cookie-banner p {
  flex: 1 1 auto;
  max-width: 520px;
  color: #fff;
}
.cookie-btn {
  padding: 11px 22px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  margin-left: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  background: #E86C32;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px #E86C321a;
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
}
.cookie-btn.settings {
  background: #22242f;
  color: #E86C32;
  border: 2px solid #E86C32;
}
.cookie-btn.reject {
  background: #DCD2BC;
  color: #232630;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #232630;
  color: #E86C32;
  box-shadow: 0 2px 18px #E86C3260;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,49,60,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.72,.18,.55,1.04);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #232630;
  border: 2px solid #E86C32;
  border-radius: 22px;
  padding: 38px 36px 32px 36px;
  box-shadow: 0 8px 42px #E86C321f, 0 2px 14px #23263022;
  color: #fff;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E86C32;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 50%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #343742;
  padding: 14px 0 12px 0;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  color: #fff;
  font-size: 1.01em;
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #343844;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
  border: 2px solid #E86C32;
}
.cookie-toggle:checked {
  background: #E86C32;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(.54,.01,.55,.98);
  box-shadow: 0 2px 8px #191a2010;
}
.cookie-toggle:checked::before {
  left: 22px;
  background: #fff;
}

.cookie-modal .cookie-btn {
  margin-left: 0;
  margin-top: 16px;
  width: 100%;
}
.cookie-modal .note {
  font-size: 0.9rem;
  color: #E86C32;
  margin-bottom: 0;
  margin-top: 6px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .main-nav {
    gap: 11px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .feature-grid, .card-container {
    gap: 16px;
  }
  .feature-item {
    padding: 17px 12px;
    min-width: 160px;
    font-size: 0.97em;
  }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-nav {
    font-size: 0.97em;
  }
}
@media (max-width: 768px) {
  .main-nav,
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    position: relative;
  }
  .footer-info, .footer-nav {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .section, .cta-section, .hero {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section { flex-direction: column; align-items: stretch; }
  .content-grid { flex-direction: column; gap: 16px; }
  .feature-grid { flex-direction: column; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .footer-info { font-size: 0.98em; }
  .testimonial-card { font-size: 0.98rem; }
  .feature-item img { width: 32px; height: 32px; }
  .container { padding-left: 3px; padding-right: 3px; }
  .hero, .section, .cta-section {
    border-radius: 15px;
    padding: 16px 2px 23px 2px;
  }
  .cookie-modal {
    padding: 16px 6px 14px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 3px;
    font-size: 0.99em;
  }
}

/* --- LIST SPACING --- */
ul,
ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
  color: #DCD2BC;
  font-size: 1rem;
  line-height: 1.5;
}
ul li strong, ol li strong {
  color: #E86C32;
}

/* TEXT-LINKS THAT AREN'T NAV */
.content-wrapper a:not(.cta-button), .footer-info a {
  color: #E86C32;
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color 0.2s;
  padding: 2px;
  border-radius: 4px;
}
.content-wrapper a:not(.cta-button):hover, .footer-info a:hover {
  color: #fff;
  background: #E86C32;
  text-decoration: underline;
}

/* ICON LISTS */
li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff2;
}


/* ANIMATION MICRO-INTERACTIONS */
.cta-button, .card, .feature-item, .cookie-btn, .mobile-menu-toggle, .main-nav a, .mobile-nav a, .cookie-modal, .cookie-toggle {
  transition: all 0.18s cubic-bezier(.71,.18,.58,.89);
}

/* ELEVATED INTERFACE DECORATION */
.section:before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 60% 120%, #E86C3210 0%, transparent 100%);
  border-radius: 100px;
  pointer-events: none;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 80px;
  width: 220px;
  height: 60px;
  background: radial-gradient(circle, #E86C3239 0%, transparent 70%);
  border-radius: 90px;
  pointer-events: none;
  z-index: 2;
}

/* FOCUS VISIBLE for accessibility */
:focus-visible {
  outline: 2px solid #E86C32;
  outline-offset: 2px;
}

/* Hide elements utility class */
.hidden {
  display: none !important;
}
