/* ========= CSS RESET & BASE TYPOGRAPHY ========= */
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,
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7F4;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #15415D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #000;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ========= BRAND TYPOGRAPHY ========= */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }

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

p, label, li, dd {
  color: #222;
  font-size: 1.06rem;
}

/* ========= BASE LAYOUT CONTAINERS ========= */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.045);
  transition: box-shadow 0.3s;
}
.section:hover,
.section:focus-within {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
@media (max-width: 768px) {
  .section {
    padding: 25px 8px;
    margin-bottom: 36px;
  }
}

/* ========= HEADER & NAVBAR ========= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 90;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #15415D;
  padding: 3px 6px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  font-weight: 500;
}
nav a:hover,
nav a:focus {
  background: #F7F7F4;
  color: #000;
}
.cta-btn {
  background: #15415D;
  color: #fff !important;
  padding: 10px 26px;
  margin-left: 8px;
  border-radius: 22px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(21,65,93,0.10);
  transition: background 0.15s, box-shadow 0.18s, color 0.15s;
  border: 1px solid #15415D;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: #15415D !important;
  box-shadow: 0 4px 18px rgba(21,65,93,0.14);
}

@media (max-width: 1040px) {
  .nav-bar nav {
    gap: 16px;
  }
}

/* BURGER MENU ICON */
.mobile-menu-toggle {
  font-size: 2.2rem;
  background: none;
  color: #15415D;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 50%;
  z-index: 120;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover {
  background: #e0e4e7;
  color: #111;
}

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

/* ========= MOBILE MENU ========= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 100vw rgba(0,0,0,0.22);
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.8,.07,.45,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #15415D;
  background: none;
  padding: 16px;
  align-self: flex-end;
  border: none;
  margin-top: 20px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 32px 16px 32px;
}
.mobile-nav a {
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 600;
  padding: 8px 0;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #f2f2f2;
  color: #15415D;
}

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


/* ========= HERO SECTION ========= */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 35px 0;
  background: #fff;
  box-shadow: 0 6px 28px rgba(21,65,93,0.06);
  margin-bottom: 54px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #111;
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.hero p {
  max-width: 550px;
  color: #222;
  font-size: 1.14rem;
  margin-bottom: 23px;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (max-width: 900px) {
  .hero { padding: 38px 0 18px 0; }
  .hero h1 { font-size: 1.43rem; }
}

/* ========= FLEXBOX SPACING PATTERNS ========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 22px 16px;
  flex: 1 1 299px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 14px;
  box-shadow: 0 3px 7px rgba(21,65,93,0.05);
  margin-bottom: 22px;
  flex-direction: column;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.06rem;
  font-weight: 500;
}
.testimonial-card span {
  color: #111;
  font-size: 1rem;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px;
    gap: 12px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ========= FEATURES GRID & SERVICES ========= */
.features .feature-grid,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.features .feature-grid li, .features ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  flex: 1 1 230px;
  min-width: 220px;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.22s, border 0.22s, background 0.18s;
}
.features .feature-grid li:hover, .features ul li:hover {
  background: #F7F7F4;
  box-shadow: 0 6px 24px rgba(21,65,93,0.10);
  border: 1px solid #15415D44;
}
.features img { width: 40px; height: 40px; }
.features strong { font-size: 1.2rem; }
.features h3 { font-weight: 600; font-size: 1.12rem; color: #222; }
.features p { font-size: 1.02rem; color: #333; }

@media (max-width: 900px) {
  .features .feature-grid, .features ul {
    gap: 16px;
    flex-direction: column;
  }
  .features .feature-grid li, .features ul li { min-width: 0; }
}

.services-overview ul,
.comparison ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 18px;
  margin-bottom: 20px;
}

.services .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px 24px;
  box-shadow: 0 2px 10px rgba(21,65,93,0.03);
  border: 1px solid #eaeaea;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.18s;
}
.services .service-card:hover {
  box-shadow: 0 4px 19px rgba(21,65,93,0.12);
  border: 1px solid #15415D22;
}
.services .service-card h3 { font-size: 1.15rem; letter-spacing: 0.01em; }

/* ========= CTA SECTION ========= */
.cta-section {
  padding: 32px 12px 48px 12px;
  background: #15415D;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 64px;
  box-shadow: 0 6px 28px rgba(21,65,93,0.13);
}
.cta-section h2 { color: #fff; }
.cta-section .cta-btn {
  background: #fff;
  color: #15415D !important;
  border: 1px solid #15415D;
  margin-top: 12px;
}
.cta-section .cta-btn:hover,
.cta-section .cta-btn:focus {
  background: #15415D;
  color: #fff !important;
}
@media (max-width: 900px) {
  .cta-section { margin-bottom: 36px; padding: 28px 4px 34px 4px; }
}

/* ========= TABLES (CENIK) ========= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1.03rem;
  background: #fafbfc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 11px rgba(21,65,93,0.04);
}
thead {
  background: #15415D;
  color: #fff;
}
th, td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}
tr:last-child td {
  border-bottom: none;
}

/* ========= FAQ (dl, dt, dd) ========= */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #15415D;
  margin-top: 18px;
}
dd {
  margin-left: 0;
  margin-bottom: 9px;
}

/* ========= BLOG/ARTICLE GRID ========= */
.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.articles article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  padding: 20px 18px;
  flex: 1 1 308px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow 0.22s, border 0.22s, background 0.16s;
  border: 1px solid #eaeaea;
}
.articles article:hover {
  box-shadow: 0 8px 28px rgba(21,65,93,0.16);
  background: #F7F7F4;
  border: 1px solid #15415D33;
}
.articles h3 {
  font-size: 1.09rem;
  margin-bottom: 10px;
}
.articles a {
  color: #15415D;
  font-weight: 600;
}

@media (max-width: 750px) {
  .articles { flex-direction: column; gap: 12px; }
  .articles article { max-width: 100%; }
}

aside {
  margin: 22px 0 24px 0;
}

/* ========= BLOG SEARCH & NEWSLETTER ========= */
.blog-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 28px;
}
.blog-search label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #15415D;
}
.blog-search input[type="search"] {
  padding: 10px 12px;
  border-radius: 9px;
  border: 1.5px solid #b9c4ca;
  font-size: 1rem;
  transition: border 0.17s, box-shadow 0.17s;
}
.blog-search input[type="search"]:focus {
  border: 1.5px solid #15415D;
  box-shadow: 0 2px 11px rgba(21,65,93,0.13);
  outline: none;
}
.signup-field {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: stretch;
  margin-top: 12px;
}
.signup-field input[type="email"] {
  flex: 2 1 210px;
  padding: 12px 14px;
  font-size: 1.05rem;
  border: 1.5px solid #b9c4ca;
  border-radius: 9px;
  transition: border 0.16s, box-shadow 0.17s;
  background: #fff;
}
.signup-field input[type="email"]:focus {
  border: 1.5px solid #15415D;
  outline: none;
  box-shadow: 0 2px 9px rgba(21,65,93,0.09);
}
.signup-field .cta-btn {
  padding: 12px 26px;
  font-size: 1.07rem;
}

/* ========= TEXT LINKS ========= */
.text-link {
  color: #15415D;
  text-decoration: underline;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
}
.text-link:hover, .text-link:focus {
  color: #111;
  text-decoration: underline;
}

/* ========= POLICY/TEXT PAGES ========= */
.policy {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(0,0,0,0.03);
  padding: 34px 20px;
  margin-bottom: 44px;
}
.text-section h2 {
  margin-top: 20px;
  font-size: 1.2rem;
}
.text-section ul {
  padding-left: 23px;
  margin-top: 14px;
  margin-bottom: 16px;
}
.text-section p {
  margin-bottom: 15px;
}

/* ========= CONTACT PAGE ========= */
.address, address {
  font-style: normal;
  color: #222;
  font-size: 1.05rem;
  margin-top: 10px;
}
.map-section p {
  margin: 12px 0 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #15415D;
  font-size: 1rem;
}
.map-section img {
  width: 18px; height: 18px;
  margin-right: 7px;
}

/* ========= TEAM INTRO ========= */
.team-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .team-intro ul { flex-direction: column; gap: 12px; }
}
.team-intro ul li {
  background: #f4f4f4;
  border-radius: 13px;
  padding: 18px 14px;
  flex: 1 1 220px;
  min-width: 170px;
  box-shadow: 0 2px 8px rgba(21,65,93,0.04);
}
.team-intro strong { color: #15415D; font-weight: 600; }
.team-intro span { color: #222; opacity: 0.82; font-size: 0.98rem; }

/* ========= FOOTER ========= */
footer {
  background: #111;
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.14s, opacity 0.12s;
}
footer nav a:hover,
footer nav a:focus {
  color: #78B4A4;
  opacity: 1;
}
.footer-info {
  max-width: 340px;
  font-size: 1rem;
  color: #eee;
  line-height: 1.6;
}
.footer-info address {
  color: #cacaca;
  font-size: 0.98rem;
  margin-top: 9px;
  line-height: 1.6;
}
.footer-info img {
  vertical-align: middle;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  display: inline-block;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-info { max-width: 100%; }
}

/* ========= CONFIRMATION PAGE ========= */
.confirmation {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 15px rgba(21,65,93,0.09);
  padding: 36px 16px;
  text-align: center;
  margin-bottom: 70px;
}
.confirmation h1 { color: #15415D; }
.confirmation a.cta-btn { margin: 22px auto 0 auto; }

/* ========= COOKIE BANNER ========= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 170;
  background: #222;
  color: #fff;
  padding: 22px 10px 22px 22px;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 -4px 22px rgba(21,65,93,0.16);
  border-top: 4px solid #15415D;
  transition: transform 0.36s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  font-size: 1.04rem;
  line-height: 1.6;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  background: #fff;
  color: #15415D;
  border: 1.7px solid #15415D;
  padding: 8px 20px;
  border-radius: 9px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.13s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #15415D;
  color: #fff;
  box-shadow: 0 2px 11px rgba(21,65,93,0.17);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #111;
  border: 1.7px solid #15415D;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #15415D;
  color: #fff;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 14px 8px 14px 12px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.52);
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: all;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 38px 28px 28px 28px;
  min-width: 330px;
  max-width: 420px;
  box-shadow: 0 15px 45px rgba(21,65,93,0.21);
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  margin-bottom: 18px;
  color: #15415D;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #15415D;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  color: #111;
}
.cookie-modal .modal-actions {
  display: flex; gap: 15px; justify-content: flex-end;
}
.cookie-modal button {
  background: #15415D;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal button.secondary {
  background: #fff;
  color: #15415D;
  border: 1.8px solid #15415D;
}
.cookie-modal button.secondary:hover,
.cookie-modal button.secondary:focus {
  background: #f4f4f4;
  color: #15415D;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 1.45rem;
  background: none;
  color: #222;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
}
/* Hide category toggles for 'essential' */
.cookie-modal .cookie-category.essential label {
  font-weight: 600;
  color: #15415D;
}
.cookie-modal .cookie-category.essential input[type="checkbox"] {
  display: none;
}

@media (max-width: 600px) {
  .cookie-modal { min-width: 180px; padding: 17px 6px 16px 6px; }
  .cookie-modal h3 { font-size: 1.08rem; }
}

/* ========= ANIMATIONS ========= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInX {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero, .cta-section, .testimonial-card,
.card, .service-card, .confirmation, .articles article {
  animation: fadeIn 0.8s cubic-bezier(.6,.03,.45,1) both;
}
.mobile-menu.open {
  animation: fadeInX 0.5s cubic-bezier(.7,.08,.45,1) both;
}
.cookie-modal {
  animation: fadeIn 0.36s cubic-bezier(.6,.05,.45,1) both;
}

/* ========= RESPONSIVE LAYOUTS ========= */
@media (max-width: 600px) {
  .container { padding: 0 6px; }
}

/* ========= CUSTOM SCROLLBARS ========= */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F7F4;
}
::-webkit-scrollbar-thumb {
  background: #d6d8dc;
  border-radius: 9px;
}

/* ==================== END ==================== */
