/* 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;
}
html {
  height: 100%;
  box-sizing: border-box;
  --brand-primary: #1A2D39;
  --brand-secondary: #E0AC00;
  --brand-accent: #F6F7F8;
  --brand-dark: #16222d;
  --brand-shadow: rgba(26,45,57,0.08);
  --radius: 16px;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 16px;
  line-height: 1.6;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  display: inline-block;
}
a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #ba6700;
}
button, .btn-primary, .btn-secondary {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: var(--radius);
  transition: background .2s, color .2s, box-shadow .2s, border .2s, transform .2s;
  font-weight: 700;
  letter-spacing: 0.02em;
}
ul, ol {
  margin: 0;
  padding-left: 1.6em;
}
li+li {
  margin-top: 8px;
}

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1180px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--brand-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* GRADIENT_HERO AREA */
.hero {
  padding: 0;
  background: linear-gradient(120deg, #F6F7F8 0%, #E0AC00 90%, #ffe3b0 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 #fff;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
  padding: 36px 0 32px 0;
}
.hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.25em;
}
.hero h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #353535;
  line-height: 1.38;
  margin-bottom: 0.7em;
}

/* BRAND FONTS & TYPOGRAPHY */
h2, h3, h4, h5 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand-primary);
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem;
  margin: 18px 0 8px 0;
  color: #213246;
}
.text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #31384a;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 26px;
  font-size: 1.08rem;
  border-radius: var(--radius);
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(26,45,57,0.10);
  transition: background .2s, color .19s, transform .12s;
}
.btn-primary {
  background: linear-gradient(90deg, #E0AC00 0%, #FFD87D 100%);
  color: #1A2D39;
  border: 1.8px solid #E0AC00;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD87D;
  color: #16222d;
  box-shadow: 0 8px 22px #efd08389;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: transparent;
  color: #1A2D39;
  border: 1.4px solid #E0AC00;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFECC0;
  color: #323A47;
  box-shadow: 0 2px 12px #ffe6b88c;
  transform: translateY(-1.5px);
}


/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 18px var(--brand-shadow);
  padding: 0;
  position: relative;
  z-index: 35;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 0 20px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--brand-primary);
  font-weight: 500;
  padding: 4px 8px;
  transition: color 0.18s, background 0.18s, border 0.15s;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  background: #FFD87D55;
  color: #B48200;
}
header .btn-primary {
  margin-top: 0;
  padding: 10px 22px;
  font-size: 1.02rem;
  border-radius: 8px;
  margin-left: 12px;
}
header .mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #E0AC00;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  transition: color .15s;
  border-radius: 8px;
}
header .mobile-menu-toggle:hover {
  color: #ba8700;
  background: #F7E5B755;
}


/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26, 45, 57, 0.90);
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0.2,0.2,1);
  flex-direction: column;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuIn .36s cubic-bezier(.47,1.65,.76,.98);
}
@keyframes mobileMenuIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  color: #E0AC00;
  border: none;
  font-size: 2.3rem;
  padding: 7px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1003;
  box-shadow: 0 4px 28px var(--brand-shadow);
  transition: background .14s, color .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFECC0;
  color: #BA8700;
}
.mobile-nav {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  padding: 32px 24px 40px 32px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.22rem;
  color: #fff;
  background: transparent;
  border-radius: 7px;
  width: 100%;
  padding: 13px 3px 13px 10px;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD87D33;
  color: #E0AC00;
}


/* FEATURE GRID & FLEX CONTAINERS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
  margin: 22px 0 8px 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 3px 16px var(--brand-shadow);
  border-radius: 11px;
  padding: 28px 22px;
  flex: 1 1 220px;
  max-width: 310px;
  margin-bottom: 16px;
  transition: box-shadow .17s, transform .12s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 24px #e0ac0034;
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  width: 44px;
  height: 44px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--brand-shadow);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 330px;
  transition: box-shadow .15s, transform .10s;
}
.card:hover {
  box-shadow: 0 8px 24px #e0ac0044;
  transform: translateY(-2.5px) scale(1.01);
}
.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 22px var(--brand-shadow);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 690px;
  transition: box-shadow .14s, transform .10s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px #e0ac0034;
  transform: translateY(-2px);
}
.testimonial-card .text-section p {
  color: #192736;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
}
.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.brand-list, .guide-list {
  list-style: none;
  margin-top: 14px;
  margin-bottom: 6px;
}
.brand-list li, .guide-list li {
  background: #fff;
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--brand-shadow);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.brand-list span {
  color: var(--brand-primary);
}


/* FOOTER */
footer {
  background: linear-gradient(120deg, #1A2D39 0%, #213246 100%);
  color: #fff;
  padding-top: 34px;
  padding-bottom: 22px;
  margin-top: 50px;
  z-index: 15;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFD87D;
  font-size: 1rem;
  background: transparent;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background .13s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD87D44;
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: #F6F7F8;
  margin-bottom: 6px;
}
footer small {
  opacity: 0.6;
  font-size: 0.97rem;
  color: #E0AC00;
  margin-top: 4px;
}


/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  color: #1A2D39;
  margin: 0;
}
.contact-details img {
  width: 20px;
  height: 20px;
  filter: grayscale(40%) brightness(1.6) contrast(1.2);
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1101;
  background: #fff;
  box-shadow: 0 -3px 24px #1A2D396c;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 24px 18px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform .37s cubic-bezier(.39,1.94,.67,.97);
  transform: translateY(20vh);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  animation: fadeInCookie .33s ease-in;
}
@keyframes fadeInCookie {
  from {opacity: 0; transform: translateY(80px);} to {opacity: 1; transform: translateY(0);}
}
.cookie-banner p {
  color: #233343;
  font-size: 1.05rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner .btn-cookie {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  background: #E0AC00;
  border: none;
  box-shadow: 0 2px 8px #e0ac004b;
  margin-right: 8px;
  transition: background .14s, color .14s;
}
.cookie-banner .btn-cookie.reject {
  background: #1A2D39;
  color: #FFD87D;
}
.cookie-banner .btn-cookie.settings {
  background: #fff;
  color: #1A2D39;
  border: 1.2px solid #E0AC00;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #FFD87D;
  color: #1A2D39;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #233343;
  color: #FFD87D;
}
.cookie-banner .btn-cookie.settings:hover {
  background: #F6F7F8;
  color: #1A2D39;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1201;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,45,57,0.68);
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadeModalIn .22s cubic-bezier(.39,1.94,.67,.97);
}
@keyframes fadeModalIn {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 95vw;
  width: 390px;
  padding: 38px 26px 28px 26px;
  box-shadow: 0 8px 42px #1a2d393c;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInCookie .3s;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  color: #E0AC00;
  margin-bottom: 8px;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #1A2D39;
  cursor: pointer;
  padding: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #25344A;
  font-size: 1rem;
  font-weight: 400;
  user-select: none;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background-color: #e4e4e4;
  transition: .2s;
  cursor: pointer;
}
.cookie-category .switch input:checked + .slider {
  background-color: #E0AC00;
}
.cookie-category .slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: .2s;
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-category .slider {
  box-shadow: 0 2px 12px #e0ac003b;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .btn-cookie {
  min-width: 120px;
}


/* UTILITY FLEX CLASSES FROM BRIEF */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* VISUAL HIERARCHY & SPACING */
main .content-wrapper > * + * {
  margin-top: 14px;
}
section + section {
  margin-top: 38px;
}


/* ----------- RESPONSIVE DESIGN (MOBILE-FIRST) ----------- */
@media (max-width: 1024px) {
  .feature-grid li, .card { max-width: 100%; flex: 1 1 48vw; }
  .container { max-width: 100vw; }
}
@media (max-width: 900px) {
  .feature-grid li, .testimonial-card { min-width: 180px; padding: 16px 14px; }
  .footer-nav { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 7px;
  }
  header .container {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  header nav {
    display: none !important;
  }
  .btn-primary, .btn-secondary {
    min-width: 140px;
    font-size: 0.99rem;
    padding: 10px 13px;
  }
  header .mobile-menu-toggle {
    display: flex !important;
  }
  .feature-grid,
  .content-grid,
  .card-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid li,
  .card,
  .testimonial-card {
    min-width: unset;
    max-width: 99vw;
    padding: 13px 9px;
  }
  .section {
    margin-bottom: 32px;
    padding: 26px 5px;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 0 18px 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
  .hero h2 {
    font-size: 1.05rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 520px) {
  .cookie-modal-content { width: 97vw; padding: 18px 4vw 18px 4vw; }
  .cookie-banner { padding: 13px 3vw 13px 4vw; }
}


/* MICRO-INTERACTIONS & GENERAL TRANSITIONS */
.card, .feature-grid li, .testimonial-card,
.btn-primary, .btn-secondary, .mobile-nav a, .footer-nav a, .cookie-banner .btn-cookie {
  transition: all .16s cubic-bezier(0.18,1,.82,.99);
}


/* CUSTOM SCROLLBAR for MOBILE MENU & MODALS */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #E0AC00 #1A2D39;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 7px;
  background: #1A2D39;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #E0AC00;
  border-radius: 5px;
}

/* SELECTION COLOR */
::selection {
  background: #FFD87D;
  color: #1A2D39;
}


/* --------- UTILS --------- */
.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block !important; } }

