/* CSS RESET & NORMALIZE */
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;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111111;
}

h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 10px; }

p, ul, ol { font-size: 1rem; margin-bottom: 16px; color: #232323; }
strong { font-weight: bold; }
em, i { font-style: italic; }

.text-section h1, .text-section h2 {
  color: #1a1a1a;
}

/* BRAND COLORS */
:root {
  --primary: #111217;
  --primary-dark: #22232a;
  --secondary: #F4A259;
  --secondary-dark: #df8a2a;
  --gray-0: #fff;
  --gray-1: #f6f6f6;
  --gray-2: #eaeaea;
  --gray-3: #dadada;
  --gray-4: #b7b7b7;
  --gray-5: #6d6d6d;
  --gray-6: #232323;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Utility spacing for all major sections */
main section:not(:last-child) {
  margin-bottom: 60px;
}

/* Header */
header {
  width: 100%;
  background: var(--primary);
  color: var(--gray-0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 12px 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(34,34,34,0.05);
}
header > a {
  margin-left: 24px;
  padding: 0;
  display: flex;
  align-items: center;
}
header img {
  max-height: 40px;
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
  margin: 0 0 0 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 4px;
  color: var(--gray-1);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.3s;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 24px;
  margin-left: 36px;
  font-size: 1rem;
  box-shadow: 0 2px 14px 0 rgba(34,34,34,0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 24px 0 rgba(34,34,34,0.19);
  border: 1.5px solid var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--secondary);
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 20001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--gray-0);
  outline: none;
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(20,20,22,0.97);
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(0.77,0,0.175,1);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.23s;
  z-index: 20010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gray-0);
  transform: scale(1.12);
}
.mobile-nav {
  margin-top: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--gray-0);
  font-size: 1.33rem;
  padding: 12px 0;
  margin: 0;
  border-bottom: 1.5px solid transparent;
  width: 100%;
  transition: border-bottom 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(125deg, #fff 85%, #ececec 100%);
  padding: 56px 0 48px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero p {
  color: #404040;
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.hero .cta-btn {
  margin-top: 12px;
  font-size: 1.07rem;
}

/* FEATURES SECTION */
.features {
  background: #f6f6f6;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.07);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .container {
  width: 100%;
}
.features h2 {
  color: var(--primary);
  font-size: 2rem;
}
.features ul, .features ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.features li {
  color: var(--primary);
  font-size: 1.1rem;
  padding: 10px 0 10px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.features li img {
  height: 32px;
  width: 32px;
  filter: grayscale(100%) contrast(1.5);
  opacity: 0.87;
}

/* SERVICES SECTION */
.services {
  background: var(--gray-0);
  margin-bottom: 60px;
  padding: 40px 0;
}
.services .content-wrapper {
  gap: 24px;
}
.services h2, .services h1 {
  color: var(--primary);
  margin-bottom: 8px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 4px;
}
.service-item {
  min-width: 250px;
  max-width: 320px;
  background: #fff;
  color: #1f1f1f;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(34,34,34,0.05);
  padding: 24px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.21s;
  z-index: 1;
}
.service-item:hover, .service-item:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 44px rgba(0,0,0,.10);
  border-color: var(--secondary);
  z-index: 2;
}
.service-item h2, .service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.service-item p {
  color: #393939;
  font-size: 1.04rem;
}
.service-item span {
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-top: 6px;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fafafb;
  color: #151515;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(60,60,60,.08);
  padding: 20px 28px 18px 28px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 24px;
  width: 100%;
  max-width: 640px;
  transition: box-shadow 0.21s, border-color 0.21s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #181818;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #464646;
  font-weight: 500;
  margin-left: 2px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 44px 0 rgba(0,0,0,0.10);
  border-color: var(--primary-dark);
}

/* CONTACT-SHORT SECTION (Homepage) */
.contact-short {
  background: linear-gradient(120deg, #fff 80%, #f6f6f6 100%);
  padding: 40px 0 48px 0;
  border-radius: 14px;
}
.contact-short h2 {
  color: var(--primary);
  text-align: center;
  font-size: 2rem;
}
.contact-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 26px auto 14px auto;
  justify-content: center;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1.01rem;
  color: #2c2c2c;
}
.info-block img {
  height: 26px;
  width: 26px;
  filter: grayscale(100%) contrast(1.6);
}

.contact-short .cta-btn {
  margin: 0 auto;
  display: block;
  font-size: 1.05rem;
  margin-top: 22px;
}

/* CONTACT FULL PAGE */
.contact-details {
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #252525;
  font-size: 1.07rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%) contrast(1.7);
}

/* TEXT + IMAGE FLEX (unused here, but from prompt) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD CONTAINER & CARDS (utility for possible extensions) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(34,34,34,.06);
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.21s, border 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
}

.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;
}

/* GENERIC BUTTONS */
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--gray-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 20px 28px 20px;
  border-top: 1.5px solid #22232a;
  position: relative;
}
footer > a img {
  height: 38px;
  width: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer nav a {
  color: var(--gray-4);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom 0.17s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}
footer span {
  font-size: 0.95rem;
  color: var(--gray-5);
  margin-top: 8px;
}

/* UTILITY CLASSES AND ANIMATIONS */
@media (hover: hover) {
.card, .service-item, .testimonial-card {
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), border 0.2s;
}
}

/* MEDIA QUERIES: MOBILE FIRST DESIGN */
@media (max-width: 1024px) {
  .service-list {
    justify-content: center;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 92vw;
  }
  header nav {
    gap: 18px;
  }
  .service-item {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 11px 22px;
    font-size: 0.97rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero {
    padding: 35px 0 32px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features, .testimonials, .services, .contact-short {
    padding: 30px 0;
    margin-bottom: 38px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 10px;
  }
  .service-list {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }
  .service-item {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    padding: 20px 12px 16px 16px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-info, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 16px 14px 12px 16px;
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero .container {
    padding: 0 6px;
  }
  .features, .testimonials, .services, .contact-short {
    padding: 20px 2px;
    margin-bottom: 24px;
  }
  .section {
    margin-bottom: 24px;
    padding: 15px 2px;
  }
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #22232a;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 22px 28px 18px 28px;
  z-index: 40000;
  box-shadow: 0 0 36px rgba(16,18,26,0.14);
  animation: cookies-slidein 0.85s cubic-bezier(0.4,0,0.2,1) 1;
}
@keyframes cookies-slidein {
  0% { transform: translateY(56px); opacity: 0; }
  70% { opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #fff;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 9px 26px;
  font-size: 1rem;
  margin-top: 8px;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
}
.cookie-banner button.secondary {
  background: #fff;
  color: var(--primary);
  border: 1.2px solid var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--secondary);
  border: 1.2px solid var(--secondary);
  box-shadow: 0 2px 16px 0 rgba(244,162,89,0.06);
}
.cookie-banner button.secondary:hover, .cookie-banner button.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,26,38,0.64);
  z-index: 42000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 16px;
  width: 98vw;
  max-width: 410px;
  box-shadow: 0 8px 48px 0 rgba(22,22,32,0.16);
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  animation: cookies-modal-slide 0.42s cubic-bezier(0.4,0,0.22,1) 1;
}
@keyframes cookies-modal-slide {
  0% { transform: translateY(56px) scale(0.84); opacity: 0.1; }
  85% { opacity: 1; }
  100% { transform: none; }
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-category label {
  font-size: 1rem;
  color: #22232a;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px; height: 22px;
}
.cookie-category input[type="checkbox"][disabled] {
  background: #ececec;
  accent-color: #b7b7b7;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  color: var(--secondary);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  transition: color 0.17s, transform 0.19s;
}
.cookie-modal-close:hover {
  color: var(--primary);
  transform: scale(1.07);
}
.cookie-modal-buttons {
  margin-top: 17px;
  display: flex;
  gap: 13px;
  align-items: center;
}

/* Accessibility/Overrides for contrast in critical sections */
.testimonials, .testimonial-card, .contact-details li, .info-block {
  color: #181819;
  background: #fff;
}

/* SCROLLBAR (modern browsers only) */
::-webkit-scrollbar {
  width: 6px;
  background: #f6f6f6;
}
::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}

/* Micro-interactions */
.cta-btn, .service-item, .card, .testimonial-card {
  will-change: transform, box-shadow;
}

/* Focus visible */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* END */
