/* ==== CSS RESET AND BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #fff;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #194873;
  text-decoration: none;
  transition: color .18s cubic-bezier(.33,.82,.67,1);
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #101010;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol, table, .text-section {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #232323;
}
small {
  font-size: 0.92em;
  color: #696969;
}
strong {
  font-weight: 600;
  color: #101010;
}

/* ==== COLORS & MONOCHROME SOPHISTICATION ==== */
:root {
  --brand-primary: #194873;  /* Deep navy */
  --brand-secondary: #E5F2FD;  /* Pale blue gray */
  --brand-accent: #DFBA33;   /* Gold */
  --dark: #101010;
  --mid: #232323;
  --gray: #444;
  --light: #f8f8f8;
  --border: #e4e4e4;
  --white: #fff;
  --shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
}

body {
  background: var(--light);
  color: var(--mid);
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 26px 7px;
    border-radius: 12px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark);
  padding: 6px 0;
  opacity: .93;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.15px;
}
nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width .16s ease;
  position: absolute;
  left: 0; bottom: -3px;
}
nav a:hover, nav a:focus {
  color: var(--brand-primary);
  opacity: 1;
  text-decoration: none;
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}
header .btn-primary {
  margin-left: 36px;
}
@media (max-width:1000px){
  nav {
    gap: 14px;
  }
  header .btn-primary {
      margin-left: 16px;
  }
}
/* ==== HEADER MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--brand-primary);
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  padding: 3px 10px;
  margin-left: 22px;
  transition: background .14s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: var(--dark);
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .btn-primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 95vw;
  max-width: 420px;
  background: var(--white);
  box-shadow: -8px 0 28px 0 rgba(20,18,28,0.11);
  z-index: 1005;
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.33,1,.44,1);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--dark);
  padding: 0 7px;
  background: none;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  padding: 14px 0 13px 0;
  transition: color .2s;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--dark);
  background: var(--brand-secondary);
}
@media (max-width: 560px) {
  .mobile-menu {
    padding: 18px 12px 24px 12px;
    max-width: 99vw;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(134deg, var(--white) 78%, var(--brand-secondary) 110%);
  min-height: 360px;
  padding: 56px 0 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 22px;
}
@media (max-width:768px){
  .hero {
    padding: 34px 0 16px;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* ==== FLEXBOX GRIDS & CARDS ==== */
.features-grid, .card-container, .card-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.card-container {
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 30px 24px 28px 24px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(20,18,28,.09);
  transform: translateY(-2px) scale(1.015);
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 230px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 18px 24px;
  transition: box-shadow .16s;
}
.feature:hover {
  box-shadow: 0 6px 18px 0 rgba(20,18,28,.07);
}
.feature img {
  height: 38px;
  width: auto;
  margin-bottom: 5px;
  filter: grayscale(1) contrast(1.2);
}
@media (max-width:900px){
  .features-grid {
    gap: 16px;
  }
}
@media (max-width:740px){
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    min-width: 0;
    width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  background: #f3f3f4;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(40,40,50,0.11);
  padding: 20px 28px;
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  transition: box-shadow .18s, border-color .16s;
  border: 1px solid #e5e5e8;
}
.testimonial-card p {
  color: #191921;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 7px;
  font-family: 'Montserrat',sans-serif;
}
.client-name {
  font-size: .98rem;
  color: #596174;
  font-style: normal;
  font-family: 'Roboto',sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 13px;
    border-radius: 12px;
  }
}

/* ==== BUTTONS ==== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 27px;
  cursor: pointer;
  text-align: center;
  transition: background .19s, color .18s, box-shadow .19s, transform .2s;
  outline: none;
  border: none;
  box-shadow: 0 1px 8px 0 rgba(25,20,24,0.04);
  margin-top: 12px;
  margin-bottom: 6px;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: #101010;
  color: var(--brand-accent);
  box-shadow: 0 3px 18px 0 rgba(30,20,40,0.11);
  transform: scale(1.025);
}
.btn-secondary {
  background: var(--white);
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
  box-shadow: 0 4px 18px 0 rgba(25,72,115,0.13);
  transform: scale(1.025);
}

/* ==== MISC FLEX LAYOUTS ==== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #232323;
  font-family: 'Roboto',sans-serif;
}
.contact-details img {
  height: 24px;
  width: 24px;
  filter: grayscale(1) contrast(1.2);
}
@media (max-width: 650px){
  .contact-details {
    gap: 12px;
  }
  .contact-details img {
    height: 20px;
    width: 20px;
  }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  background: #f6f7fa;
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 2px 24px 0 rgba(18,19,44,.04);
  margin-bottom: 28px;
}
.pricing-table table {
  width: 100%;
  background: transparent;
  border-radius: 18px;
  font-size: 1.04em;
}
.pricing-table th {
  background: var(--brand-primary);
  color: var(--white);
  font-family: 'Montserrat',sans-serif;
  font-size: 1.09em;
  letter-spacing: -.2px;
  font-weight: 600;
}
.pricing-table td {
  color: #232323;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== FOOTER ==== */
footer {
  background: #191921;
  color: #e1e1ea;
  font-size: 0.99rem;
  padding: 32px 0 24px;
  border-top: 1.5px solid #23232b;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 7px;
}
footer nav a {
  color: #e1e1ea;
  font-family: 'Montserrat',sans-serif;
  font-size: 0.98rem;
  opacity: 0.8;
  border-bottom: 1px solid transparent;
  transition: color .12s, border .12s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
  opacity: 1;
  border-bottom: 1.5px solid var(--brand-accent);
}
.footer-contact {
  color: #bbb;
  font-size: .96rem;
  text-align: center;
  margin-bottom: 4px;
}
.footer-contact span {
  padding: 0 2px;
}
.footer-copyright {
  color: #838391;
  font-size: .95rem;
}
@media (max-width:600px){
  footer {
    padding: 24px 0 12px;
  }
  footer .container{
    gap: 10px;
  }
  .footer-contact{
    font-size: .9rem;
  }
}

/* ==== TEXT + UTILITY CLASSES ==== */
.text-section {
  margin-bottom: 18px;
}
.text-section:last-child {
  margin-bottom: 0;
}
.benefits-list ul, .text-section ul, .text-section ol {
  margin: 9px 0 0 18px;
  padding-left: 12px;
  list-style: disc;
  color: #232323;
}
.benefits-list li, .text-section li, ol li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
}
.benefits-list li strong {
  color: var(--brand-primary);
}

.map-embed {
  padding: 16px 0;
  margin-bottom: 14px;
  font-size: 0.99em;
}

@media (max-width: 720px){
  .content-wrapper {
    margin: 0;
    padding: 0 5px;
  }
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-list .text-section h2 {
  font-size: 1.16rem;
  color: var(--brand-primary);
  margin-bottom: 7px;
  margin-top: 16px;
}
.faq-list .text-section p {
  margin-bottom: 0;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  box-shadow: 0 -2px 28px 0 rgba(15,18,35,0.11);
  border-top: 1.5px solid #e2e2ec;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 24px 16px;
  gap: 32px;
  animation: cookie-slidein .34s cubic-bezier(0.5,1,0.86,1);
}
@keyframes cookie-slidein {
  0% {transform: translateY(70px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  max-width: 520px;
  font-size: 1rem;
  color: #242432;
  margin-right: 30px;
}
.cookie-banner .cookie-btn {
  border-radius: 20px;
  padding: 10px 21px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s, box-shadow .12s;
}
.cookie-banner .accept {
  background: var(--brand-primary);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #101010;
  color: var(--brand-accent);
}
.cookie-banner .reject {
  background: #eaeaea;
  color: #444;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #cacaca;
  color: #101010;
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--brand-primary);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 6px 20px 7px;
  }
  .cookie-banner p {
    margin: 0 0 8px 0;
    font-size: .98rem;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,25,32,0.55);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 12px 32px 0 rgba(13,20,41,0.21);
  padding: 42px 40px 34px 40px;
  width: 98vw;
  max-width: 390px;
  color: #181820;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modal-fadein .34s cubic-bezier(.5,1,.85,1);
  position: relative;
  z-index: 9999;
}
@keyframes modal-fadein {
  0% {transform: scale(0.87); opacity:0;}
  100% {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.18rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-categories {
  margin: 18px 0 17px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 2px 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-category span {
  font-size: 1rem;
  color: #232323;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 17px; height: 17px;
  margin-right: 6px;
  cursor: pointer;
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 10px; top: 14px;
  font-size: 1.6rem;
  color: #79797a;
  background: none;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ececed;
  color: #232323;
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .cookie-btn, .cookie-modal-close {
  transition: background .17s, color .16s, transform .16s, box-shadow .16s;
}
.feature, .card, .testimonial-card {
  transition: box-shadow .19s, transform .21s;
}
nav a:after {
  transition: width .17s;
}
.mobile-menu {
  transition: transform .36s cubic-bezier(.33,1,.44,1);
}

/* ==== RESPONSIVE RULES ==== */
@media (max-width: 900px) {
  .hero{
    min-height: 260px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .features-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .contact-details {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .pricing-table th, .pricing-table td {
    padding: 8px 8px;
  }
  .map-embed p {
    font-size: .97em;
  }
  .cookies-banner, .cookie-modal {
    max-width: 98vw;
    padding: 22px 10px;
  }
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.32rem;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 3px;
  }
  .hero {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ==== SPECIAL CLASSES FOR SPACINGS ==== */
.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; }

/* ================ END OF STYLE.CSS ================ */