/* ===== CSS RESET & NORMALIZATIONS ===== */
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,
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,
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; scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #181818;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {max-width: 100%; display: block;}
ul, ol {list-style: none;}
a {text-decoration: none; color: inherit;}
button, input, select, textarea {font: inherit;}

/* ===== ROOT VARIABLES FOR MONOCHROME ===== */
:root {
  --color-bg: #fff;
  --color-bg-dark: #181818;
  --color-bg-light: #f7f7f7;
  --color-primary: #181818;
  --color-secondary: #F5C76A;
  --color-accent: #FFF8F1;
  --color-gray: #888;
  --color-muted: #e4e4e7;
  --color-overlay: rgba(24,24,24,0.92);
  --color-border: #d1d5db;
  --color-white: #fff;
  --shadow-card: 0 6px 32px rgba(28, 28, 28, 0.12);
  --shadow-hover: 0 8px 40px rgba(28, 28, 28, 0.16);
  --radius: 14px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: 0.22s cubic-bezier(.45,.05,.55,.95);
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #181818;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-weight: 500;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 500;
}
h1, h2 {color: #181818;}

p, ul, ol, li, dl, dt, dd, em, strong {
  color: #202020;
  font-family: var(--font-body);
  font-size: 1rem;
}
strong {font-weight: 600;}
em {font-style: italic; color: #444;}

@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  h3 {font-size: 1.1rem;}
}


/* ===== CONTAINER & LAYOUT (MOBILE-FIRST) ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero {
  align-items: flex-start;
  gap: 18px;
  padding: 32px 0 18px 0;
}
@media (min-width: 900px) {
  .hero {padding: 48px 0 32px 0;}
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {box-shadow: var(--shadow-hover); transform: translateY(-4px);}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-light);
  color: #1e1e1e;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(0,0,0,.06);
  margin-bottom: 20px;
  border-left: 4px solid #181818;
  max-width: 520px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 32px rgba(41,61,63,0.13);
  border-left-color: var(--color-secondary);
}

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

/* Responsive FLEX changes */
@media (max-width: 768px) {
  .container {padding: 0 14px;}
  .content-grid, .card-container, .values-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ======= MAIN NAVIGATION (DESKTOP + MOBILE BURGER) ======= */
header {
  background: var(--color-bg);
  border-bottom: 1.5px solid var(--color-border);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 24;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 74px;
  gap: 16px;
  position: relative;
}
.main-nav > a {
  padding: 0 8px;
  font-size: 1rem;
  color: #232425;
  position: relative;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  height: 42px;
  margin-right: 4px;
}
.main-nav > a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 5px;
  height: 2.5px;
  background: transparent;
  border-radius: 2px;
  transition: background var(--transition);
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: #1b2121;
  color: var(--color-secondary);
}
.main-nav > a:hover:after,
.main-nav > a:focus:after {
  background: var(--color-secondary);
}
.main-nav > a img {
  width: 34px;
  height: 34px;
  margin-right: 4px;
  display: inline-block;
  border-radius: 5px;
}
.primary-cta {
  margin-left: 10px;
  background: #181818;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 1rem;
  box-shadow: 0 3px 14px rgba(41,61,63, .11);
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  display: inline-block;
}
.primary-cta:hover,
.primary-cta:focus {
  background: var(--color-secondary);
  color: #181818;
  box-shadow: 0 5px 32px rgba(245,199,106, 0.13);
  transform: translateY(-2px) scale(1.025);
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 31;
  background: var(--color-bg-dark);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #181818;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh;
  width: 100vw;
  background: var(--color-overlay);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.32,1.1,.23,1); /* slide in */
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 0 24px 20px;
  font-size: 2.1rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {color: var(--color-secondary);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  padding: 17px 0;
  font-size: 1.22rem;
  color: #fff;
  border-bottom: 1px solid rgba(245,199,106,0.09);
  line-height: 1.3;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(245,199,106, 0.08);
  border-radius: 6px;
}

@media (min-width: 961px) {
  .mobile-menu {display: none !important;}
}

/* ====== FOOTER ====== */
footer {
  border-top: 1.5px solid var(--color-border);
  background: var(--color-accent);
  padding: 38px 0 22px 0;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #181818;
  font-size: 0.96rem;
  opacity: .78;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {color: var(--color-primary); opacity: 1; background: #e7e7e7;}
.footer-brand {
  color: #444;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  margin-right: 2px;
}
@media (max-width: 768px) {
  .footer-nav {gap: 10px; font-size: .97rem;}
}

/* ====== FEATURE / VALUES GRIDS & CARDS ====== */
.feature-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-grid li, .values-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  font-size: 1rem;
  min-width: 240px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  border-left: 4px solid #181818;
  transition: box-shadow var(--transition), border-color var(--transition);
  margin-bottom: 20px;
}
.feature-grid li:hover, .feature-grid li:focus,
.values-grid > div:hover, .values-grid > div:focus {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-secondary);
}
.feature-grid img {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
}

/* ====== SERVICE LIST ====== */
.service-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  flex: 1 1 300px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 34px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 3.5px solid #1b2121;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-list li:hover, .service-list li:focus {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-secondary);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #181818;
  margin-top: 8px;
}

/* ======= TEXT SECTION / DL, UL ========= */
.text-section {
  background: var(--color-bg-light);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 8px;
  margin-bottom: 16px;
}
.text-section dl {display: flex; flex-direction: column; gap: 8px;}
.text-section dt {font-weight: 600; color: #1b2121;}
.text-section dd {margin-bottom: 6px; color: #222; margin-left: 0;}
.text-section a {font-weight: 600; color: #1b2121; word-break: break-word;}

ul li::marker, ol li::marker {color: #888;}

/* ======= PRICING TABLE ======= */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-family: var(--font-body);
}
.pricing-table thead tr {background: var(--color-bg-light);}
.pricing-table th {font-weight: 600;}
.pricing-table tr:last-child td {border-bottom: none;}
@media (max-width: 600px) {
  .pricing-table,
  .pricing-table th,
  .pricing-table td {font-size: 0.95rem;}
}

/* ====== TESTIMONIALS ====== */
.testimonial-card p {
  color: #232323;
  font-size: 1.07rem;
  line-height: 1.55;
  margin-bottom: 8px;
}
.testimonial-card em {
  color: #585858;
  font-size: .97rem;
  font-style: italic;
}

/* ====== RESPONSIVE ALIGNMENT & SPACING ====== */
section {margin-bottom: 60px; padding: 40px 0;}
@media (max-width: 600px) {
  section {margin-bottom: 44px; padding: 26px 0;}
  .feature-grid li, .values-grid > div, .service-list li {padding: 22px 13px;}
}

/* ======= MODALS & ANIMATIONS ======= */
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu, .mobile-menu.open,
  .primary-cta, .testimonial-card,
  .card, .feature-grid li, .values-grid > div {
    transition-duration: 0.28s;
  }
}

/* ======= FOCUS VISIBLE ======= */
:focus {outline: none;}
:focus-visible {outline: 2.5px solid var(--color-secondary); outline-offset: 2px;}

/* ======= COOKIES CONSENT BANNER ======= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  background: #181818;
  color: #fff;
  padding: 22px 18px;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: cookieBannerIn 0.62s cubic-bezier(.22,1,.36,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0;}
  to   { transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #fff;
}
.cookie-consent-buttons {
  display: flex;
  gap: 13px;
}
.cookie-consent-btn {
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 22px;
  font-size: .98rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 23px;
  margin: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 16px rgba(28,28,28,0.07);
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: var(--color-secondary);
  color: #181818;
}
.cookie-settings-btn {
  background: transparent;
  color: #fff;
  border: 1.6px solid #fff;
  padding: 10px 22px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #222;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(24,24,24,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s cubic-bezier(.38,1.5,.32,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #191919;
  border-radius: var(--radius);
  box-shadow: 0 8px 64px rgba(36, 36, 36, 0.23);
  padding: 38px 28px;
  max-width: 370px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPop 0.3s cubic-bezier(.28,1.1,.45,1);
}
@keyframes modalPop {
  from { transform: scale(.86); opacity: 0;} 
  to   { transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}
.cookie-category {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 500;
  color: #181818;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #e5e5e5;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  margin-right: 5px;
}
.cookie-toggle:checked {background: var(--color-secondary);}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
  transition: transform 0.17s;
}
.cookie-toggle:checked:before {transform: translateX(16px);}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-consent-btn {
  padding: 9px 19px;
  font-size: 0.97rem;
}
.cookie-modal .cookie-settings-btn {
  padding: 8.5px 18px;
  font-size: 0.97rem;
}

/* ======= MISCELLANEOUS & UTILS ======= */
hr {
  border: none; height: 1.5px; margin: 36px 0 18px 0;
  background: var(--color-border);
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* ======= SCROLLBAR ======= */
body::-webkit-scrollbar {
  width: 12px;
  background: #f3f3f3;
}
body::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 9px;
}

/* ======= HIGHLIGHTING & SELECTION ======= */
::selection { background: var(--color-secondary); color: #181818; }

/* ======= ACCESSIBILITY: HIDE CONTENT CLASS ======= */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ======= PRINT ======= */
@media print {
  .main-nav, .mobile-menu-toggle, .mobile-menu, .primary-cta, .cookie-consent-banner, .cookie-modal-overlay {display: none !important;}
  footer {margin-top: 40px; background: #fff; color: #000;}
}
