@import "./fonts.css";

/* VARIABLES */

:root {
  --color-black: #000000;
  --color-grey: #676a70;
  --color-light-grey: #c4cbd1;
  --color-white: #ffffff;
  --color-red: #df1b41;
  --color-orange: #f76704;
  --color-yellow: #f7c404;
  --color-green: #48c404;
  --color-blue: #0055bc;
  --color-light-blue: #0096d6;
  --color-purple: #6704f7;
  --color-pink: #f704f7;
  --background-color-black: #000000;
  --background-color-grey: #eef1f6;
  --background-color-green: #cbf4c9;
  --background-color-blue: #e6f8ff;
  --background-color-white: #ffffff;
  --fonts: Kanit, Montserrat;
}

/* GENERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonts), system-ui;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 1.3;
}

/* LINKS AND BUTTONS */

a,
a:visited {
  color: var(--color-blue);
  text-decoration: none;
  text-wrap: nowrap;
  transition: color 0.5s ease, background-color 0.5s ease;
}

a:hover,
a:focus,
a:active {
  color: var(--color-black);
}

a.arrow-link-internal,
a.arrow-link-external {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

a.arrow-link-internal::after,
a.arrow-link-external::after {
  content: '';
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 18 18'%3E%3Cpath fill='currentColor' d='M14.8408 9.24192L15.4065 8.67624L14.8408 8.11055L10.0678 3.33758L8.93644 4.46895L12.3437 7.87624L4.09275 7.87624L4.09275 9.47624L12.3437 9.47624L8.77734 13.0426L9.90871 14.174L14.8408 9.24192Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

a.arrow-link-internal::after {
  rotate: 0;
}

a.arrow-link-external::after {
  rotate: -45deg;
}

a.arrow-link-internal:hover::after,
a.arrow-link-external:hover::after {
  opacity: 1;
}

.logo-link {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none !important;
}

.menu-links {
  margin-left: 32px;
  flex-grow: 1;
}

.button {
  color: var(--color-white) !important;
  background-color: var(--background-color-black) !important;
  border: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus,
.button:active {
  color: var(--color-white) !important;
  background-color: var(--color-grey) !important;
}

.cta {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 8px;
}

/* IMAGES */

.logo {
  height: 36px;
  display: flex;
  align-items: center;
}

.icon {
  height: 42px;
  border-radius: 0 !important;
}

.menu-icon {
  height: 18px;
}

.photo {
  height: 64px;
  border-radius: 50% !important;
}

/* BACKGROUNDS */

.bg-white {
  color: var(--color-black);
  background-color: var(--background-color-white);
}

.bg-grey {
  color: var(--color-black);
  background-color: var(--background-color-grey);
}

.bg-black {
  color: var(--color-white);
  background-color: var(--background-color-black);
}

/* HEADER */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 16px 60px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--color-grey);
}

header a {
  color: var(--color-black) !important;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}

header a:hover,
header a:focus,
header a:active {
  color: var(--color-grey);
  background-color:  var(--background-color-grey);
}

/* HERO */

.hero {
  text-align: left;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 31px;
  font-weight: 700;
}

.hero div.card,
.hero div.icon-card {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .card-main img {
  border-radius: 0 !important;
}

.hero .hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-main {
  display: flex;
  width: 50%;
}

.hero-image-mobile {
  display: none;
  width: 100%;
}

.hero-image-desktop {
  display: flex;
  width: 30%;
}

.hero-main {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-main div {
  position: absolute;
  top: 120px;
  right: 60px;
  text-align: right;
}

.hero-main img {
  width: 100% !important;
  border-radius: 0 !important;
}

.hero-main h1 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 96px;
  text-shadow: 1px 1px 0 var(--color-black);
}

.hero-main p {
  color: var(--color-white);
  font-weight: 600;
  font-size: 64px;
  text-shadow: 1px 1px 0 var(--color-black);
}

.slogan-text {
  font-size: 32px;
  font-weight: bolder;
}

.slogan-text {
  background: linear-gradient(60deg, var(--color-blue), var(--color-purple), var(--color-light-blue));
  background-size: 300% 300%;
  animation: gradient-font-animation 15s ease infinite;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* FOOTER */

.site-map {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--color-light-grey);
}

.site-map h1 {
  font-size: 16px;
  margin-bottom: 16px;
}

.site-map p {
  font-size: 16px;
  margin-bottom: 8px;
}

.site-map .logo {
  display: inline-block;
}

.site-map .logo img {
  height: 48px;
}

footer a,
footer a:visited,
.site-map a,
.site-map a:visited {
  color: var(--color-grey);
}

.footer a:hover,
.footer a:focus,
.footer a:active,
.site-map a:hover,
.site-map a:focus,
.site-map a:active {
  color: var(--color-black);
}

.site-map .active {
  color: var(--color-black);
  font-weight: 600;
}

footer {
  padding: 32px 60px;
}

.hero,
.site-map {
  padding: 60px;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.card-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 250px;
  height: 200px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--color-light-grey);
  background-image: url('../images/background.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

.card-grid-icon {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 4px !important;
  background: var(--background-color-grey);
}

.card-grid-logo {
  width: 48px;
  height: 48px;
  border-radius: 0 !important;
}

.card-grid-title {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.card-grid-subtitle {
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 400;
  /* text-transform: uppercase; */
  text-align: center;
}

/* GRADIENT FONT */

@keyframes gradient-font-animation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.gradient-font {
  background: linear-gradient(60deg, var(--color-blue), var(--color-purple), var(--color-light-blue));
  background-size: 300% 300%;
  animation: gradient-font-animation 15s ease infinite;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* TEXT AND LABELS */

b {
  font-family: inherit;
  font-weight: 600;
}

.text-blue {
  font-family: inherit;
  color: var(--color-blue);
}

.text-green {
  font-family: inherit;
  color: var(--color-green);
}

.text-red {
  font-family: inherit;
  color: var(--color-red);
}

.text-black {
  font-family: inherit;
  color: var(--color-black);
}

.bg-black .text-black {
  font-family: inherit;
  color: var(--color-white);
}

.text-grey {
  font-family: inherit;
  color: var(--color-grey);
}

.text-light-grey {
  font-family: inherit;
  color: var(--color-light-grey);
}

.text-white {
  font-family: inherit;
  color: var(--color-white);
}

.bg-white .text-white {
  font-family: inherit;
  color: var(--color-light-grey);
}

.text-x-small {
  font-family: inherit;
  font-size: 12px;
}

.text-small {
  font-family: inherit;
  font-size: 16px;
}

.text-normal {
  font-family: inherit;
  font-size: 20px;
}

.text-medium {
  font-family: inherit;
  font-size: 24px;
}

.text-large {
  font-family: inherit;
  font-size: 32px;
}

.text-x-large {
  font-family: inherit;
  font-size: 64px;
}

.text-center {
  text-align: center;
}

.document p {
  margin-bottom: 16px;
}

.code {
  display: inline-block;
  font-family: monospace !important;
  font-size: 16px;
  color: var(--color-black);
  background: #f7f9fc;
  padding: 4px 6px;
  border-radius: 4px;
}

.code-blue {
  font-family: inherit;
  color: var(--color-blue) !important;
}

.code-red {
  font-family: inherit;
  color: var(--color-red) !important;
}

.label-blue,
.label-green {
  font-family: Montserrat, Kanit, system-ui !important;
  border-radius: 4px;
  padding: 4px 6px;
  font-weight: 700;
  font-size: 14px;
}

.label-blue {
  color: #0067f7 !important;
  background: var(--background-color-blue);
}

.label-green {
  color: var(--color-grey) !important;
  background: var(--background-color-green);
}

/* CARDS */

.plans {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  width: 500px;
  border-radius: 12px;
  border: 1px solid #cccccc;
  background: var(--background-color-white);
}

.plan-card-item,
.plan-card-header,
.plan-card-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  gap: 8px;
}

.plan-card-item {
  padding: 8px 24px;
}

.plan-card-item .icon {
  height: 32px;
}

.plan-card-header {
  align-items: flex-start;
  justify-content: space-between;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 12px;
}

.plan-card-footer {
  justify-content: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.plan-card-footer,
.plan-card-button {
  width: 100%;
}

.plan-card-button a {
  display: block;
  width: 100%;
  padding: 12px 24px;
  text-align: center;
}

.plan-card-header {
  background: var(--background-color-blue);
}

/* COOKIE SCRIPT */

._CookieScriptReportPageCheckboxes {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

._CookieScriptReportPageCheckboxText {
  margin-left: 12px !important;
  text-transform: uppercase !important;
}

._CookieScriptReportPageSaveSettingButton {
  color: var(--color-white) !important;
  background-color: var(--background-color-black) !important;
  font-weight: 500 !important;
  margin-left: -4px;
  padding: 6px 12px !important;
  border: 0 !important;
  border-radius: 8px !important;
  transition: color 0.2s ease, background-color 0.2s ease !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

._CookieScriptReportPageConsentKey {
  margin-bottom: 16px !important;
  font-family: monospace !important;
}

._CookieScriptReportPageTable {
  margin-bottom: 24px !important;
}

._CookieScriptReportPageTable ._CookieScriptReportPageTableTd:first-child {
  font-family: monospace !important;
  font-size: 14px !important;
  font-weight: bolder !important;
}

._CookieScriptReportPageTableTh,
._CookieScriptReportPageTableTd {
  width: 25% !important;
  border: 1px solid var(--color-light-grey) !important;
}

._CookieScriptReportPageTableTh {
  background-color: var(--background-color-grey) !important;
  text-transform: uppercase !important;
}

.cookie-report-container h4 {
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.pricing-toggles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: row;
  margin-bottom: 32px;
}

.pricing-toggle-container {
  display: inline-flex;
  background: #fff;
  padding: 8px;
  border-radius: 28px;
  gap: 8px;
  user-select: none;
  border: 1px solid var(--color-light-grey);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  border: none !important;
  color: #000000;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 24px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
}
.pricing-toggle.active {
  background: #efefef;
  font-weight: 600;
  z-index: 1;
}
.save-badge {
  display: flex;
  align-items: center;
  background: #48c404;
  color: #fff;
  font-size: 12px;
  border-radius: 12px;
  padding: 2px 8px;
  margin-left: 8px;
  font-family: inherit;
  font-weight: 500;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  min-width: 320px;
  max-width: 360px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  position: relative;
  font-family: inherit;
  border: 1px solid var(--color-light-grey);
}
.pricing-card.premium {
  border: 2px solid #222;
}
.most-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  padding: 2px 16px;
  font-weight: 600;
  font-family: inherit;
}
.pricing-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-title {
  font-size: 2rem;
  font-family: inherit;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}
.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: inherit;
  text-align: center;
}
.plan-price-desc {
  font-size: 1.2rem;
  font-weight: 400;
  color: #7b8493;
  margin-left: 4px;
  font-family: inherit;
}
.plan-desc {
  color: #7b8493;
  margin-bottom: 24px;
  font-family: inherit;
  text-align: center;
}
.plan-features {
  color: #7b8493;
  margin-bottom: 32px;
  line-height: 2;
  font-family: inherit;
  padding-left: 0;
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 320px;
}
.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: 1rem;
  font-family: inherit;
  position: static;
  min-height: 1.5em;
}
.plan-features li:before {
  content: '\2022';
  color: #000000;
  font-size: 1.2em;
  margin-right: 0.7em;
  display: inline-block;
  vertical-align: middle;
  position: static;
  line-height: 1;
}
.plan-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.premium-btn {
  background: #000;
  color: #fff;
  border: none;
}
.free-btn {
  border: 1.5px solid #000000;
  background: #fff;
  color: #000;
}
a.plan-btn.free-btn {
  color: #000;
  text-decoration: none;
}
.new-badge {
  background: #222;
  color: #fff;
  font-size: 11px;
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 6px;
  font-family: inherit;
}

/* --- Features Section Styles --- */
.features-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 480px;
  height: auto;
}
.features-list {
  width: 400px;
  flex: none;
  min-width: 320px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border 0.2s, background 0.2s;
  box-shadow: none;
  font-family: inherit;
}
.feature-item.selected {
  border: 1px solid #000000;
  background: #ffffff;
  box-shadow: none;
}
.feature-icon {
  background: #f4f6fa;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
  font-family: inherit;
}
.feature-desc {
  color: #7b8493;
  font-size: 1rem;
  font-weight: 400;
  font-family: inherit;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: inherit;
}
/* AI Suggestions: title and badge on one line, desc always below */
.feature-title-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.features-image {
  flex: 1;
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.features-image-inner {
  height: 100%;
  width: 100%;
  max-width: none;
  border-radius: 24px;
  box-shadow: none;
  padding: 16px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: #f4f6fa;
}
#feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  border-radius: 4px;
  border: 1px solid var(--color-light-grey);
}
@media (max-width: 900px) {
  .features-section {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .features-image, .features-list {
    max-width: 100%;
    min-width: 0;
  }
  .features-image-inner {
    max-width: 100%;
  }
}

/* Features Carousel Styles */
.features-carousel {
  display: none;
}
@media (max-width: 768px) {
  .features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .features-list,
  .features-image {
    display: none !important;
  }
  .features-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    background: none;
    min-height: 350px;
    margin-top: 32px;
  }
  .carousel-track {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 148px;
  }
  .carousel-slide {
    width: 100%;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border: 1px solid var(--color-light-grey);
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    min-height: 48px;
    gap: 8px;
    padding: 12px;
  }
  .carousel-slide.selected {
    display: flex;
  }
  .feature-icon {
    margin-right: 8px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
    margin: 0;
    padding: 0;
  }
  .carousel-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0 auto;
    background: #f4f6fa;
    border-radius: 16px;
    min-height: 100px;
    max-height: 160px;
    overflow: hidden;
    position: relative;
  }
  #carousel-feature-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    min-height: 80px;
    max-height: 160px;
  }
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    z-index: 2;
    box-shadow: none;
    transition: background 0.2s;
    outline: none;
  }
  .carousel-arrow.left {
    left: 8px;
    right: auto;
  }
  .carousel-arrow.right {
    right: 8px;
    left: auto;
  }
  .carousel-arrow:active {
    background: transparent;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0 0;
    position: static;
    width: 100%;
    order: 2;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
  }
  .carousel-dot.active {
    background: #222;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  header {
    padding: 16px 16px;
  }

  .logo {
    height: 28px;
  }

  .menu-links {
    display: none;
  }

  .hero-image-mobile {
    display: flex;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-image-main {
    width: 90%;
  }

  .label-blue,
  .label-green {
    font-size: 12px;
    padding: 2px 4px;
  }

  .hero,
  .site-map {
    padding: 20px 16px 40px 16px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero div.card  {
    flex-direction: column;
  }

  .hero div.card,
  .hero div.icon-card {
    gap: 18px;
  }

  .hero-main div {
    top: 60px;
    right: 16px;
  }

  .hero-main .slogan-text,
  .hero-main .slogan-shadow {
    font-size: 20px;
  }

  .hero-main h1 {
    font-size: 48px;
    margin-bottom: 0;
  }

  .hero-main p {
    font-size: 18px;
  }

  .site-map {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px 0;
    padding: 32px 16px;
    width: 100%;
  }
  .site-map > div {
    width: 50%;
    max-width: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    text-align: left;
    gap: 4px;
    box-sizing: border-box;
    padding: 0 8px;
  }
  @media (max-width: 480px) {
    .site-map > div {
      width: 100%;
      padding: 0;
    }
  }
  .site-map .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
  }
  .site-map .logo img {
    margin: 0;
  }
  .site-map h1 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    margin-top: 8px;
  }
  .site-map p, .site-map a {
    font-size: 1rem;
    margin-bottom: 2px;
    text-align: left;
  }
  .site-map-logo {
    width: 100% !important;
  }

  footer {
    padding: 20px 8px;
  }

  .plans {
    flex-direction: column;
  }

  .plan-card {
    width: 100%;
  }

  .plan-card-item,
  .plan-card-header,
  .plan-card-footer {
    padding: 16px;
  }

  .plan-card-item {
    padding: 4px 16px;
  }

  .plan-card-item .icon {
    height: 28px;
  }

  .text-x-small {
    font-size: 8px;
  }

  .text-small {
    font-size: 14px;
  }

  .text-normal {
    font-size: 16px;
  }

  .text-medium {
    font-size: 20px;
  }

  .text-large {
    font-size: 24px;
  }

  .text-x-large {
    font-size: 48px;
  }

  .code {
    font-size: 14px;
  }

  .document p {
    margin-bottom: 12px;
  }

  ._CookieScriptReportPageTable {
    font-size: 10px !important;
    word-break: break-word !important;
  }

  ._CookieScriptReportPageTable ._CookieScriptReportPageTableTd:first-child {
    font-size: 10px !important;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: stretch;
  }
  .card-grid-item {
    width: 100%;
    min-width: 148px;
    max-width: 180px;
    min-height: 172px;
    height: auto;
    padding: 12px 8px;
    margin: 0 auto;
    gap: 4px;
  }
  .card-grid-title {
    font-size: 18px;
  }
  .card-grid-icon,
  .card-grid-logo {
    max-width: 40px;
    height: auto;
  }
  .pricing-cards {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .pricing-card {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 320px;
    padding: 24px;
  }
  .pricing-card-inner {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .save-badge {
    font-size: 12px;
    padding: 2px 8px;
    margin-left: 6px;
    white-space: nowrap;
    display: inline-block;
  }

  .pricing-toggles {
    flex-direction: column;
  }

}