/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #151515;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #151515;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #204080;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
th, td {
  padding: 18px 12px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}
th {
  background: #f5f6fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}
blockquote {
  margin: 24px 0 24px 0;
  padding: 16px 28px;
  background: #f5f6fa;
  border-left: 4px solid #222;
  color: #222;
  border-radius: 0 8px 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #151515;
  margin-bottom: 18px;
  line-height: 1.13;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #232323;
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
  color: #222;
}
.section p, .text-section p { margin-bottom: 16px; }

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
nav > a img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.025rem;
  font-weight: 500;
  color: #232323;
}
.main-nav .cta-btn {
  margin-left: 22px;
}

/* Buttons */
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: #151515;
  border: none;
  border-radius: 22px;
  padding: 12px 34px;
  box-shadow: 0 2px 16px rgba(20,20,20,0.07);
  transition: background .18s, box-shadow .21s, color .2s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #204080;
  color: #fff;
  box-shadow: 0 6px 16px rgba(32,64,128,0.12);
  text-decoration: none;
}

/* HAMBURGER - MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #232323;
  margin-left: 18px;
  z-index: 9999;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  color: #204080;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.94);
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  transform: translateX(100vw);
  transition: transform .39s cubic-bezier(.77,.07,.58,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -8px 0 30px rgba(0,0,0,.25);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 10px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f3b400;
}
.mobile-nav {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  width: 80vw;
  max-width: 340px;
  text-align: center;
  transition: background .17s, color .13s;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #232323;
  color: #f3b400;
}

@media (max-width: 999px) {
  .main-nav {
    display: none;
  }
}

/* COMMON FLEX GROUP PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(20,20,20,0.09);
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 {
  background: #fafbfe;
  border: 1.5px solid #e8e9ec;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(32,64,128,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 410px;
  transition: box-shadow .22s, border-color .18s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: #204080;
  box-shadow: 0 8px 36px rgba(32,64,128,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-card {
    margin: 0 auto 20px auto;
    width: 98%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* SECTION THEMING AND ELEGANT CARDS */
section {
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(26,26,26,.03);
  background: #fff;
}

/* TESTIMONIAL CARD READABILITY (CRITICAL CONTRAST) */
.testimonial-card p, .testimonial-card div {
  color: #141b22;
}
.testimonial-card p {
  font-size: 1.06rem;
  margin-bottom: 2px;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card > div:last-child img {
  width: 22px;
  height: 22px;
  margin-right: 1px;
}

/* List and Icon Styles */
ul li img, ol li img {
  margin-right: 10px;
  vertical-align: bottom;
  height: 22px;
  width: 22px;
  display: inline-block;
}
ul li, ol li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer Styles */
footer {
  background: #181818;
  color: #eee;
  border-top: 1px solid #232323;
  padding-top: 0;
  margin-top: 30px;
}
footer section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 34px 0 0 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #e3e3e3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #f3b400;
}
footer .text-section {
  color: #fafbfe;
  font-size: .98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
footer img[alt="Facebook"],
footer img[alt="LinkedIn"] {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-top: 6px;
  filter: grayscale(1) contrast(1.2);
  opacity: .92;
  transition: opacity .2s;
  cursor: pointer;
}
footer img[alt="Facebook"]:hover,
footer img[alt="LinkedIn"]:hover {
  opacity: 1;
  filter: grayscale(0) contrast(1.4) brightness(1.12);
}
footer .content-wrapper > div:last-child {
  font-size: .94rem;
  color: #b1b3b8;
  margin-top: 12px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Cookie Consent Banner -----------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 20px 16px;
  z-index: 3333;
  flex-wrap: wrap;
  gap: 16px;
  transition: transform .27s cubic-bezier(.6,.03,1,.39);
  transform: translateY(100%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__msg {
  flex: 1 1 260px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 26px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .13s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #1a1a1a;
  color: #f3b400;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #204080;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #232323;
  border: 1px solid #eee;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ececec;
  color: #151515;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #f3b400;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 22px 6px 16px 6px;
    gap: 8px;
    text-align: center;
  }
  .cookie-banner__msg {
    margin-right: 0;
    font-size: .95rem;
  }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,36,36,0.82);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  max-width: 420px;
  width: 92vw;
  padding: 32px 26px 26px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(32,32,32,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 4999;
  position: relative;
  animation: modalPop .29s cubic-bezier(.77,.07,.58,1.01);
}
@keyframes modalPop {
  0% { transform: scale(.96) translateY(48px); opacity:.25; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #151515;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  color: #232323;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 2px 9px;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #204080;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f6fa;
  padding: 14px 14px;
  border-radius: 7px;
  margin-bottom: 8px;
}
.cookie-category label, .cookie-category span {
  font-size: 1rem;
  color: #232323;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #204080;
}
.cookie-category input[disabled] {
  accent-color: #888;
  opacity: .55;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/*--- END COOKIE --*/

/* Section Panel Hierarchy */
main > section {
  margin-bottom: 60px;
}
main section:last-child {
  margin-bottom: 0;
}

/* FAQ, DL/DT/DD, TABLES */
dl {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.01rem;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 18px;
  color: #222;
}
dd {
  margin: 4px 0 10px 8px;
  color: #232323;
  padding-left: 10px;
}

/* SPACING SYSTEM - VISUAL HIERARCHY */
.section, section, .card, .testimonial-card {
  margin-bottom: 60px;
}
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item, .content-wrapper {
  gap: 20px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}

/* Visual Shadows, Monochrome Drama */
.card, section, .testimonial-card {
  box-shadow: 0 2px 20px rgba(26,27,32,.07);
  border-radius: 18px;
  border: 1.5px solid #ececec;
}

/* Responsive H1/H2 Spacing */
@media(max-width: 550px) {
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.28rem; }
  h3, .h3 { font-size: 1.1rem; }
}

/* MODERN SCROLLBAR (Only for supporting browsers) */
::-webkit-scrollbar {
  width: 7px;
  background: #fafbfe;
}
::-webkit-scrollbar-thumb {
  background: #c7c9cf;
  border-radius: 12px;
}

/* INTERACTIONS & MICRO-ANIMATIONS */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle, .cookie-btn, .cookie-modal-close {
  transition: box-shadow .16s, background .17s, color .17s, transform .14s;
}
button:active, .cta-btn:active, .cookie-btn:active, .mobile-menu-close:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}

/* ACCENT COLOR HIGHLIGHT FOR KEYWORDS */
.accent {
  color: #204080;
  font-weight: 600;
}

/* Hide visually only */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Cards in Pricing Table, Content Cards */
@media (max-width: 700px) {
  table th, table td {
    padding: 10px 7px;
    font-size: .98rem;
  }
}
@media (max-width: 480px) {
  .card, section, .testimonial-card {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: .95rem;
  }
}

/* Utility - Prevent accidental overlaps */
.card, .testimonial-card, section, .content-wrapper, .container {
  min-width: 0;
  word-break: break-word;
}

/* MISC: Miscellaneous small style harmonizations */
.text-section ul {
  margin: 9px 0 10px 18px;
  padding: 0;
}
.text-section ul li {
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* End of style.css */
