/* CSS 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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #e5ecef;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background-color: #E5ECEF;
  color: #173146;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #EB8721;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #173146;
  text-decoration: underline;
  outline: none;
}

ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 8px;
}

::-webkit-input-placeholder { color: #aab6c3; }
::-moz-placeholder { color: #aab6c3; }
:-ms-input-placeholder { color: #aab6c3; }
::placeholder { color: #aab6c3; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #173146;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #EB8721;
  text-shadow: 0 2px 12px rgba(235,135,33,0.09);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #173146;
  position: relative;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #EB8721;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #173146;
}

p, ul, ol {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  color: #173146;
}

strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  max-width: 700px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(23,49,70,0.08);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 5vw;
    border-radius: 14px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #173146;
  box-shadow: 0 2px 10px rgba(23,49,70,0.04);
  position: sticky;
  top: 0;
  z-index: 60;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

header img {
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 40px;
}
.main-nav a {
  color: #fff;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: color 0.16s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EB8721;
  border-bottom: 2px solid #EB8721;
}

.button.primary {
  background: #EB8721;
  color: #fff !important;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 14px 0 rgba(235,135,33,0.23);
  transition: background 0.18s, box-shadow 0.16s;
  cursor: pointer;
  margin-left: 20px;
  outline: none;
  display: inline-block;
  letter-spacing: 0.02em;
}
.button.primary:hover, .button.primary:focus {
  background: #ff9800;
  box-shadow: 0 8px 32px 0 rgba(235,135,33,0.35);
}
.button.accent {
  background: #fff;
  color: #EB8721 !important;
  border-radius: 32px;
  border: 2px solid #EB8721;
  padding: 11px 28px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px 0 rgba(23,49,70,0.04);
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  cursor: pointer;
}
.button.accent:hover, .button.accent:focus {
  background: #EB8721;
  color: #fff !important;
  box-shadow: 0 5px 22px 0 rgba(235,135,33,0.13);
}

/* HEADER RESPONSIVE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 40px;
  color: #EB8721;
  margin: 0 0 0 20px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #EB8721;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    margin-left: 0;
  }
  .button.primary {
    padding: 11px 20px;
    margin-left: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,49,70,0.97);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.74,0.03,0.33,0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 0 0;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #EB8721;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: 2px solid #EB8721;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin: 40px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom 0.11s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EB8721;
  border-bottom: 2px solid #EB8721;
}
@media (max-width: 480px) {
  .mobile-nav {
    margin: 28px 0 0 18px;
    gap: 22px;
  }
}

/* MAIN STRUCTURE */
main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEXBOX CONTENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px rgba(23,49,70,0.06);
  padding: 30px 24px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px rgba(235,135,33,0.13);
  transform: translateY(-2px) scale(1.018);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px rgba(23,49,70,0.11);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 600px;
  border-left: 7px solid #EB8721;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #173146;
  margin-bottom: 4px;
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #173146;
  font-weight: 600;
  margin-right: 14px;
}
.testimonial-card div {
  color: #EB8721;
  font-size: 1.3rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 45px rgba(235,135,33,0.19);
}

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

/**********************************/
/* HOMEPAGE & FEATURES            */
/**********************************/
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li, .service-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(23,49,70,0.08);
  padding: 24px 22px 19px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
  border-left: 5px solid #EB8721;
}
.feature-grid li img, .service-grid > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.feature-grid li h3, .service-grid > div h3 {
  font-size: 1.23rem;
  color: #EB8721;
  margin-bottom: 6px;
  font-family: "Oswald";
}
.feature-grid li p, .service-grid > div p {
  color: #173146;
}
.feature-grid li:hover, .service-grid > div:hover {
  box-shadow: 0 9px 32px rgba(235,135,33,0.12), 0 2px 6px rgba(23,49,70,0.08);
  transform: translateY(-3px) scale(1.014);
}

.service-list {
  list-style: disc inside;
  margin-top: 9px;
  margin-bottom: 20px;
}
.service-list li {
  font-size: 1.08rem;
  font-family: "Roboto";
  color: #173146;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  border-bottom: 1px solid #E5ECEF;
  padding-bottom: 10px;
}
.service-list li span, .service-grid > div span {
  background: #EB8721;
  color: #fff;
  border-radius: 36px;
  padding: 2px 16px 3px 16px;
  font-size: 0.98rem;
  font-weight: 700;
  margin-left: 14px;
  display: inline-block;
}

/***************************************/
/* TABLES FOR PRICES                   */
/***************************************/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 40px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(23,49,70,0.045);
  overflow: hidden;
}
th, td {
  padding: 15px 10px;
  font-size: 1.07rem;
  text-align: left;
  color: #173146;
}
th {
  background: #EB8721;
  color: #fff;
  font-family: "Oswald";
}
tr:nth-child(even) td {
  background-color: #F6F9FA;
}
td {
  border-bottom: 1px solid #E5ECEF;
}
tr:last-child td {
  border-bottom: none;
}

.pricing-table th {
  font-size: 1.13rem;
  font-weight: 700;
}
.price {
  color: #EB8721;
  font-weight: bold;
}

@media (max-width: 800px) {
  .feature-grid, .service-grid {
    gap: 12px;
  }
  .feature-grid li, .service-grid > div {
    max-width: 100%;
    min-width: 120px;
    flex: 1 1 120px;
    padding: 18px 10px;
  }
  table, th, td {
    font-size: 0.99rem;
    padding: 10px 3px
  }
}

/******************************/
/* FOOTER                     */
/******************************/
footer {
  background: #12212f;
  color: #fff;
  padding: 44px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 0;
}
.footer-brand span {
  font-family: "Oswald";
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  font-size: 0.99rem;
}
.footer-links a {
  color: #EB8721;
  font-family: "Oswald";
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-links {
    align-items: flex-start;
  }
}

/******************************************/
/* COOKIE CONSENT BANNER & MODAL           */
/******************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #173146;
  color: #fff;
  z-index: 300;
  padding: 22px 20px 22px 30px;
  box-shadow: 0 -6px 20px rgba(23,49,70,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 1.05rem;
  animation: slideup-cookie 0.6s cubic-bezier(0.65,0,0.16,1) 1;
}
@keyframes slideup-cookie {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  border-radius: 28px;
  margin-left: 15px;
  font-size: 1rem;
  font-family: "Oswald";
  font-weight: 600;
  border: none;
  padding: 10px 26px;
  background: #EB8721;
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 3px 10px rgba(235,135,33,0.08);
}
.cookie-banner .reject {
  background: #fff;
  color: #EB8721;
  border: 2px solid #EB8721;
  margin-left: 0;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ff9800;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #173146;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 10px 19px 15px;
    gap: 13px;
    font-size: 0.96rem;
  }
  .cookie-banner button {
    margin-left: 5px;
    margin-bottom: 5px;
  }
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 98vw;
  max-width: 410px;
  background: #fff;
  color: #173146;
  z-index: 310;
  transform: translate(-50%, -80vh);
  border-radius: 22px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 8px 48px #EB872155, 0 1.5px 12px #17314617;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.77,0,0.18,1), opacity 0.25s;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #EB8721;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #173146;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: "Oswald";
  font-size: 1rem;
  color: #173146;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #E5ECEF;
  border-radius: 15px;
  position: relative;
  margin-right: 7px;
  transition: background 0.13s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: #EB8721;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-slider {
  transform: translateX(20px);
  background: #173146;
}
.cookie-category .disabled {
  opacity: 0.4;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  min-width: 90px;
}
@media (max-width: 540px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 14vw 7vw 8vw 8vw;
    font-size: 0.99rem;
  }
  .cookie-modal-close {
    right: 9vw;
    top: 9vw;
  }
}

/********************************/
/* ANIMATION UTILITIES           */
/********************************/
@media (hover: hover) {
  .button, a.button {
    transition: background 0.16s, color 0.14s, box-shadow 0.14s, border-color 0.15s;
  }
  .feature-grid li, .service-grid > div, .card, .testimonial-card {
    transition: box-shadow 0.18s, transform 0.13s;
  }
}

/******************************/
/* TYPOGRAPHY RESPONSIVE      */
/******************************/
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.11rem; }
  .button.primary, .button.accent { font-size: 0.98rem; padding: 10px 22px; }
}

/******************************/
/* FORMS (if present)         */
/******************************/
input, select, textarea {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.06rem;
  padding: 12px 14px;
  border: 1.5px solid #E5ECEF;
  border-radius: 9px;
  margin-bottom: 18px;
  background: #f7f9fc;
  color: #173146;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #EB8721;
  box-shadow: 0 2px 7px rgba(235,135,33,0.09);
}
label {
  font-family: "Oswald";
  font-size: 1rem;
  color: #173146;
}

/*****************************/
/* DYNAMIC LAYOUT OVERRIDES  */
/*****************************/
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}

@media (max-width: 850px) {
  .content-grid, .card-container, .feature-grid, .service-grid, .content-wrapper {
    flex-direction: column !important;
    gap: 14px !important;
  }
}

/********************************/
/* ADDITIONAL HIGH-ENERGY STYLE */
/********************************/
.section, .card, .feature-grid li, .service-grid > div, .testimonial-card {
  border-top-right-radius: 44px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 16px;
}

.section::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #EB8721;
  opacity: 0.13;
  z-index: 1;
}

.section > .container { position: relative; z-index: 2; }

.card::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E5ECEF;
  opacity: 0.22;
  z-index: 1;
}

/********************************/
/* MINIMUM CARD/SECTION SPACING */
/********************************/
.card, .feature-grid li, .service-grid > div, .testimonial-card, .section {
  margin-bottom: 20px;
}

/* Guarantee all main content wrappers stay separated */
.content-wrapper + .content-wrapper {
  margin-top: 24px;
}

/********************************/
/* REMOVE GRID/COLUMNS USAGE     */
/********************************/
/* No grid*, column-count, columns, etc. */

/********************************/
/* ENERGIZE GENERAL UI ELEMENTS  */
/********************************/
::-webkit-scrollbar {
  width: 10px;
  background: #E5ECEF;
}
::-webkit-scrollbar-thumb {
  background: #EB8721;
  border-radius: 8px;
}

/********************************/
/* OVERRIDE FOR MODAL, Z-INDEX   */
/********************************/
body.modal-active {
  overflow: hidden;
}

/********************************/
/* MISC HELPERS                  */
/********************************/
.hide, .d-none {
  display: none !important;
}

/********************************/
/* PRINT BASICS                  */
/********************************/
@media print {
  * { color: #000 !important; background: #fff !important; }
  header, nav, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

