/* -----------------------------------------------------
   CSS RESET & BASE
----------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.03em;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #222;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
hr {
  border: none;
  border-top: 1px solid #ededed;
  margin: 32px 0;
}

/* -----------------------------------------------------
   TYPOGRAPHY HIERARCHY
----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #181818;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.38rem;
}
h4 {
  font-size: 1.125rem;
}
h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, dl, dd, dt, table, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  color: #212121;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 400;
}
input[type="text"] {
  padding: 8px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  background: #fafbfc;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
input[type="text"]:focus {
  border-color: #222;
  background: #fff;
}

/* -----------------------------------------------------
   HEADER & MAIN NAVIGATION
----------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(20,20,20,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo img {
  height: 38px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-left: 36px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  padding: 6px 8px;
  position: relative;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: #181818;
}
.btn-primary {
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  background: #181818;
  border: none;
  border-radius: 28px;
  margin-left: 24px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.14s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #222426;
  color: #F5A623;
  box-shadow: 0 6px 24px rgba(30,30,30,0.06);
  transform: translateY(-1px) scale(1.03);
}

/* -----------------------------------------------------
   BURGER MENU MOBILE
----------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #222;
  margin-left: 16px;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #212121;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  z-index: 2000;
  padding-top: 18px;
  padding-right: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.34s cubic-bezier(.47,0,.74,.71);
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #222;
  margin: 0 19px 0 0;
  align-self: flex-end;
  cursor: pointer;
  padding: 12px;
  border-radius: 100px;
  transition: background 0.1s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #181818;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  width: 100vw;
  margin-top: 32px;
  padding-right: 20px;
}
.mobile-nav a {
  color: #181818;
  border-radius: 6px;
  padding: 14px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: right;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #fff;
}

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
  background: #fff;
  color: #181818;
  padding-top: 46px;
  padding-bottom: 54px;
  box-shadow: 0 2px 24px rgba(16,16,16,0.06);
  min-height: 320px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  color: #181818;
  font-size: 2.25rem;
  letter-spacing: -0.5px;
  margin-bottom: 13px;
}
.hero p {
  color: #545454;
  font-size: 1.19rem;
  margin-bottom: 14px;
}
.hero .btn-primary {
  margin-left: 0;
}

/* -----------------------------------------------------
   FLEX UTILS & PATTERNS
----------------------------------------------------- */
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  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: flex-start;
  gap: 20px;
  background: #f8f9fa;
  color: #181818;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(30,30,30,0.07);
  margin-bottom: 20px;
  max-width: 480px;
  width: 100%;
  font-size: 1.14rem;
}
.testimonial-card strong {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card .star-rating img {
  height: 18px;
  margin-top: 8px;
}
.features, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Flex spacing for all cards */
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(20,20,20,0.06);
  padding: 28px 22px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1), transform .12s;
}
.card:hover {
  box-shadow: 0 7px 32px rgba(34,34,34,0.11);
  transform: translateY(-2px) scale(1.01);
}

/* Section spacing pattern */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -----------------------------------------------------
   PRICING TABLE
----------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 36px 0 16px 0;
  box-shadow: 0 2px 18px rgba(20,20,20,0.07);
  background: #fbfbfb;
  border-radius: 14px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 17px 12px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}
.pricing-table th {
  background: #222;
  color: #fff;
  font-size: 1.11rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* -----------------------------------------------------
   CTA BANNER
----------------------------------------------------- */
.cta-banner {
  background: #181818;
  color: #fff;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 3px 24px rgba(0,0,0,0.11);
  margin-bottom: 52px;
  margin-top: 36px;
  padding: 38px 20px 34px 20px;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #d3d5d8;
}
.cta-banner .btn-primary {
  margin: 18px 0 16px 0;
  background: #fff;
  color: #181818;
  box-shadow: 0 3px 8px rgba(20,20,20,0.10);
}
.cta-banner .btn-primary:hover, .cta-banner .btn-primary:focus {
  color: #F5A623;
  background: #181818;
  border: 1px solid #fff;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
  background: #181818;
  color: #d3d5d8;
  padding: 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  gap: 32px;
  padding: 32px 16px 13px 16px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 44px;
  filter: brightness(1.1) grayscale(1);
}
.footer-brand span {
  color: #aaa;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 19px;
}
.footer-links a {
  color: #b8bac0;
  transition: color 0.18s;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.014em;
  font-size: 1rem;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #cbcbcb;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
  filter: invert(1);
}
.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 11px 0 0 0;
}
.footer-social a img {
  height: 29px;
  filter: grayscale(1) brightness(1.65);
  transition: filter 0.13s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(2.0);
}

/* -----------------------------------------------------
   CARD LIST (BENEFITS, SERVICES)
----------------------------------------------------- */
ul li > img, ol li > img {
  vertical-align: middle;
  margin-right: 9px;
  height: 22px;
}
ul {
  margin-bottom: 14px;
}

/* ----------------------------
   FAQ (DL, DT, DD)
----------------------------- */
dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #181818;
  margin-bottom: 5px;
  font-size: 1.08rem;
}
dd {
  margin-bottom: 16px;
  margin-left: 12px;
  color: #444;
}

/* ----------------------------
   CONTACT & MAP SECTION
----------------------------- */
.contact-info {
  background: #f7f7f7;
  padding: 22px 17px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(20,20,20,0.06);
}
.contact-info h2 {
  margin-bottom: 9px;
}
.contact-info p {
  color: #111;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-info img {
  vertical-align: middle;
  height: 18px;
  margin-right: 8px;
}
.contact-map span {
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-map img {
  height: 18px;
}

/* -----------------------------------------------------
   RESPONSIVE (
----------------------------------------------------- */
@media (max-width: 980px) {
  .container {
    max-width: 100%;
    padding: 0 9px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 10px 8px;
  }
  nav {
    display: none;
  }
  .btn-primary {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 26px 6vw 26px 6vw;
  }
  .hero {
    padding-top: 25px;
    padding-bottom: 26px;
    min-height: 220px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
  .testimonial-card {
    padding: 18px 12px;
    font-size: 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
  .cta-banner {
    margin-top: 18px;
    margin-bottom: 28px;
    padding: 22px 8px 19px 8px;
    border-radius: 16px;
  }
  .footer-brand img {
    height: 34px;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  section, .section {
    padding: 13px 4vw 17px 4vw;
  }
  .hero h1 {
    font-size: 1.44rem;
  }
}
@media (max-width: 480px) {
  .footer-contact {
    font-size: 0.95rem;
  }
  .testimonial-card {
    padding: 10px 4px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* -----------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
----------------------------------------------------- */
.btn-primary, .mobile-menu-close, .mobile-menu-toggle, .footer-links a, nav a, .mobile-nav a {
  transition: background .15s, color .13s, box-shadow .13s, border-color .13s, transform .12s;
}
.card, .testimonial-card, .contact-info {
  transition: box-shadow .16s, transform .11s;
}
.card:hover, .testimonial-card:hover, .contact-info:hover {
  box-shadow: 0 8px 32px rgba(20,20,20,0.15);
  transform: translateY(-0.5px) scale(1.011);
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #212121;
  color: #fff;
  font-size: 1rem;
  padding: 21px 18px 21px 18px;
  z-index: 2100;
  box-shadow: 0 -2px 24px rgba(30,30,30,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 1;
  animation: cookieSlideUp .8s cubic-bezier(.44,.06,.23,1) 0s;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0 22px 0 0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 7px 22px;
  border-radius: 25px;
  margin-left: 0;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .14s, color .12s, box-shadow .12s;
}
.cookie-banner .cookie-accept-btn {
  background: #fff;
  color: #181818;
  border: 1px solid #fff;
}
.cookie-banner .cookie-accept-btn:hover {
  background: #F5A623;
  color: #181818;
  border: 1px solid #F5A623;
}
.cookie-banner .cookie-reject-btn {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #4a4a4a;
}
.cookie-banner .cookie-reject-btn:hover {
  background: #181818;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #fff;
  color: #181818;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 4vw 18px 4vw;
  }
}
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45,45,45,0.65);
  z-index: 2200;
  animation: modalFadeIn .5s cubic-bezier(.44,.06,.23,1) 0s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2300;
  transform: translate(-50%, -55%);
  background: #fff;
  color: #181818;
  padding: 32px 28px 26px 28px;
  border-radius: 20px;
  box-shadow: 0 16px 70px 0 rgba(0,0,0,0.19);
  min-width: 320px;
  max-width: 90vw;
  animation: modalPop .5s cubic-bezier(.44,.06,.23,1) 0s;
}
@keyframes modalPop {
  0% { transform: scale(0.93) translate(-50%, -48%); opacity: 0; }
  100% { transform: scale(1) translate(-50%, -55%); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #181818;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}
.cookie-modal label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-toggle {
  margin-right: 7px;
  accent-color: #181818;
}
.cookie-modal .cookie-category {
  margin-bottom: 22px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  flex-direction: row;
}
.cookie-modal .cookie-modal-btns button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 7px 22px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .13s, color .12s, box-shadow .12s;
}
.cookie-modal .cookie-save-btn {
  background: #181818;
  color: #fff;
}
.cookie-modal .cookie-save-btn:hover {
  background: #222;
}
.cookie-modal .cookie-cancel-btn {
  background: #fff;
  color: #181818;
  border: 1px solid #181818;
}
.cookie-modal .cookie-cancel-btn:hover {
  background: #f1f1f1;
  color: #222;
}
@media (max-width: 450px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 7vw 14px 7vw;
    border-radius: 12px;
  }
}

/* -----------------------------------------------------
   MONOCHROME SOPHISTICATED EFFECTS
----------------------------------------------------- */
body, .section, section, .container {
  background: #fff;
}
.card, .testimonial-card, .contact-info {
  background: #fafbfc;
  color: #212121;
  border: 1px solid #eee;
  border-radius: 14px;
}
.cta-banner, footer {
  background: #181818;
  color: #fff;
}
footer .container {
  background: none;
}
/* Subtle shadows for sophistication */
.card, .testimonial-card, .cta-banner, .contact-info {
  box-shadow: 0 5px 24px rgba(30,30,30,0.10);
}
nav a.active, .footer-links a.active {
  color: #F5A623;
  background: #181818;
}
/* Accent color for selection and focus */
::selection {
  background: #181818;
  color: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #181818;
  outline: 2px solid #181818;
}

/* Accessibility - high contrast for testimonials */
.testimonials .testimonial-card {
  background: #f9f9f9;
  color: #181818;
  border: 1px solid #d5d7da;
  box-shadow: 0 2px 12px rgba(30,30,30,0.08);
}
.testimonials .testimonial-card strong {
  color: #181818;
}
