@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600;700&display=swap");

/* ===== DESIGN TOKENS ===== */

:root {
  --font-heading: "Bricolage Grotesque", serif;
  --font-body: "Outfit", sans-serif;

  --text-color: #1a1a1a;
  --text-muted: #6b6b6b;
  --bg-color: #f8f6fb;
  --bg-surface: #fff;
  --bg-elevated: #f0ecf5;
  --forground-color: #f0ecf5;
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #9548c1;
  --primary-hover: #7a35a6;
  --primary-soft: rgba(149, 72, 193, 0.08);
  --accent-color: #9548c1;
  --error-color: #e03131;
  --border-color: #e2dce8;
  --gray-color: #6b6b6b;
  --light-gray: #f0ecf5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 100px;
}

html[data-theme="dark"] {
  --text-color: #e8ecf0;
  --text-muted: #8a9aaa;
  --bg-color: #0e1117;
  --bg-surface: #161b22;
  --bg-elevated: #1c2128;
  --forground-color: #161b22;
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #c195db;
  --primary-hover: #d4b0e8;
  --primary-soft: rgba(193, 149, 219, 0.12);
  --accent-color: #c195db;
  --error-color: #ff6b6b;
  --border-color: #2a3340;
  --gray-color: #8a9aaa;
  --light-gray: #1c2128;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ===== RESET & BASE ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
  padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body * {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt-60 {
  margin-top: 60px;
}

.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.header .container {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background-color: rgba(248, 246, 251, 0.85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

html[data-theme="dark"] .header .container {
  background-color: rgba(14, 17, 23, 0.85);
}

.header__logo a,
.site__logo a {
  display: flex;
  color: var(--text-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  align-items: center;
  font-weight: 700;
  background: url("../assets/images/logo.webp") center left no-repeat;
  background-size: contain;
  height: 35px;
  padding-left: 45px;
  letter-spacing: -0.01em;
}

.header__logo a:hover {
  text-decoration: none;
  color: var(--text-color);
}

.header__logo a img {
  width: 40px;
  margin-right: 1rem;
}

.site__logo a {
  height: 50px;
  padding-left: 60px;
  font-size: 1.2rem;
}

.header__menu {
  margin-left: auto;
}

.header__menu_list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.header__menu_list li {
  position: relative;
}

#compressBtn,
#compressPDF {
  position: relative;
  transition: 0.3s all;
  display: flex;
  align-items: center;
}

#compressBtn::before,
#compressPDF::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  animation: spin 1s linear infinite;
  display: none;
}

body.loading__compressing #compressBtn::before,
body.loading__compressing #compressPDF::before {
  display: block;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header__menu_list li a,
.header__menu_list li span {
  color: var(--text-muted);
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.header__menu_list li a:hover,
.header__menu_list li span:hover {
  color: var(--text-color);
  text-decoration: none;
}

.header__menu_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  list-style: none;
  width: 226px;
  padding: 8px;
  right: 0;
}

.mobile_only {
  display: none;
}

.header__menu_dropdown::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  top: -10px;
  opacity: 0;
}

.header__menu_dropdown li {
  margin: 0;
}

.header__menu_dropdown li a {
  color: var(--text-color) !important;
  padding: 8px 12px !important;
  display: block;
  transition: all 0.15s ease;
  border-radius: var(--radius-sm);
}

.header__menu_dropdown li:hover > a {
  background-color: var(--bg-elevated) !important;
}

.header__menu_list li:hover > .header__menu_dropdown {
  opacity: 1;
  visibility: visible;
}

.header__menu_list .header__menu_item .header__menu_item .header__menu_dropdown {
  right: calc(100% + 10px) !important;
  top: 0 !important;
}

.header__menu_list li a,
.header__menu_list li span {
  color: var(--text-color);
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s all;
  font-size: 14px;
}

.header__menu_list li a:hover,
.header__menu_list li span:hover,
.header__menu_list li.active > a,
.header__menu_list li.active > span {
  color: var(--primary-color);
  text-decoration: none;
}

.toggle_button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='1em' height='1em' fill='none' aria-hidden='true' focusable='false'%3E%3Cg%3E%3Cpath d='M21.0672 11.8568L20.4253 11.469L21.0672 11.8568ZM12.1432 2.93276L11.7553 2.29085V2.29085L12.1432 2.93276ZM21.25 12C21.25 17.1086 17.1086 21.25 12 21.25V22.75C17.9371 22.75 22.75 17.9371 22.75 12H21.25ZM12 21.25C6.89137 21.25 2.75 17.1086 2.75 12H1.25C1.25 17.9371 6.06294 22.75 12 22.75V21.25ZM2.75 12C2.75 6.89137 6.89137 2.75 12 2.75V1.25C6.06294 1.25 1.25 6.06294 1.25 12H2.75ZM15.5 14.25C12.3244 14.25 9.75 11.6756 9.75 8.5H8.25C8.25 12.5041 11.4959 15.75 15.5 15.75V14.25ZM20.4253 11.469C19.4172 13.1373 17.5882 14.25 15.5 14.25V15.75C18.1349 15.75 20.4407 14.3439 21.7092 12.2447L20.4253 11.469ZM9.75 8.5C9.75 6.41182 10.8627 4.5828 12.531 3.57467L11.7553 2.29085C9.65609 3.5593 8.25 5.86509 8.25 8.5H9.75ZM12 2.75C11.9115 2.75 11.8077 2.71008 11.7324 2.63168C11.6686 2.56527 11.6538 2.50244 11.6503 2.47703C11.6461 2.44587 11.6482 2.35557 11.7553 2.29085L12.531 3.57467C13.0342 3.27065 13.196 2.71398 13.1368 2.27627C13.0754 1.82126 12.7166 1.25 12 1.25V2.75ZM21.7092 12.2447C21.6444 12.3518 21.5541 12.3539 21.523 12.3497C21.4976 12.3462 21.4347 12.3314 21.3683 12.2676C21.2899 12.1923 21.25 12.0885 21.25 12H22.75C22.75 11.2834 22.1787 10.9246 21.7237 10.8632C21.286 10.804 20.7293 10.9658 20.4253 11.469L21.7092 12.2447Z' fill='%23000' stroke-width='1.5'%3E%3C/path%3E%3C/g%3E%3C/svg%3E")
    center no-repeat;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-size: 17px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-left: 20px;
}

html[data-theme="dark"] .toggle_button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='1em' height='1em' fill='none' aria-hidden='true' focusable='false'%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='5' stroke='%23fff' stroke-width='1.5'%3E%3C/circle%3E%3Cpath d='M12 2V4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M12 20V22' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M4 12L2 12' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M22 12L20 12' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M19.7778 4.22266L17.5558 6.25424' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M4.22217 4.22266L6.44418 6.25424' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M6.44434 17.5557L4.22211 19.7779' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3Cpath d='M19.7778 19.7773L17.5558 17.5551' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.toogle_menu {
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-size: 17px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-left: 20px;
  background-color: transparent;
  position: relative;
  display: none;
}

.toogle_menu span,
.toogle_menu span::before,
.toogle_menu span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.3s all;
  border-radius: 5px;
}

.toogle_menu span::before {
  top: -4px;
}

.toogle_menu span::after {
  top: 6px;
}

/* ===== HERO SECTION ===== */

.hero__section,
.result__section {
  padding: 50px 0 0;
}

.result__section {
  display: none;
}

.hero__section .container {
  max-width: 900px;
}

.result__section .container {
  max-width: 900px;
}

.hero__layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero__card {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.hero__section h1 {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero__subtitle {
  text-align: left;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.hero__trust__pills {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hero__privacy {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.hero__privacy svg {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.hero__pill svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.hero__wrapper {
  padding: 16px;
  border-radius: var(--radius-lg);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero__section .left__side {
  width: 100%;
  position: relative;
}

.hero__section .right__side {
  width: 100%;
  padding: 12px 0 0 0;
  display: grid;
  grid-template-columns: 25% 25% 1fr;
  gap: 10px;
}

.hero__section .input__wrapper {
  display: contents;
}

.hero__section .input__wrapper select {
  width: 100%;
}

.hero__section .right__side.single__page .input__wrapper {
  display: none;
}

.hero__section .right__side.single__page .btn {
  grid-column: 1 / -1;
}

.hero__section .right__side .btn {
  max-width: none;
  width: 100%;
  height: 44px;
  font-size: 15px;
  white-space: nowrap;
}

/* ===== UPLOAD BOX ===== */

.uploadBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all 0.25s ease;
  width: 100%;
  cursor: pointer;
  height: 200px;
  background-color: var(--bg-color);
}

.uploadBox:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-soft);
}

.uploadBox.dropHover {
  border-color: var(--primary-color);
  background-color: var(--primary-soft);
}

.uploadBox input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: pointer;
}

.uploadBox label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.uploadBox label svg {
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.5;
  transition: all 0.25s ease;
  stroke: var(--primary-color);
}

.uploadBox:hover label svg,
.uploadBox.dropHover label svg {
  transform: translateY(-4px);
  opacity: 0.8;
}

.uploadBox label p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

html[data-theme="dark"] .uploadBox label p {
  color: var(--text-muted);
}

.uploadBox label p:first-of-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color) !important;
}

.uploadBox label p:first-of-type span {
  color: var(--primary-color);
}

/* ===== RESULT SECTION ===== */

.result__layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.result__preview {
  flex: 1.4;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.result__image__area {
  position: relative;
  background-color: var(--bg-elevated);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  cursor: default;
}

.result__image__area .img1,
.result__image__area .img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Compressed image (img2) is on top by default */
.result__image__area .img2 {
  z-index: 2;
  transition: opacity 0.15s ease;
}

/* Original image (img1) underneath */
.result__image__area .img1 {
  z-index: 1;
}

/* When comparing: hide compressed to reveal original underneath */
.result__image__area.comparing .img2 {
  opacity: 0;
}


.compare__btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.compare__btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.compare__btn:active,
.compare__btn.active {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateX(-50%) scale(0.96);
}

.result__details {
  flex: 1;
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.result__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result__stat__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-color);
}

.result__stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result__stat__value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
}

.result__stat__value--after {
  color: #22c55e;
}

.result__stat__value--after.size-increased {
  color: #ef4444;
}

.result__bar__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}

.result__bar {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  overflow: hidden;
}

.result__bar__fill {
  height: 100%;
  background-color: transparent;
}

.result__bar__fill .compressed_line {
  display: block;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: #22c55e;
  min-width: 2%;
  transition: width 0.6s ease;
}

.result__bar__fill .compressed_line.size-increased {
  background-color: #ef4444;
}

.result__reduction__label {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  white-space: nowrap;
}

.result__reduction__label.size-increased {
  color: #ef4444;
}

.comparison__modal {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}

.comparison__modal.active {
  opacity: 1;
  visibility: visible;
}

.comparison__modal .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.comparison__modal .comparison__modal_wrapper {
  position: relative;
  z-index: 2;
}


.content__section .container {
  max-width: 900px;
}

.content__wrapper {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.content__wrapper h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.content__wrapper h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.content__wrapper h2 span {
  color: var(--primary-color);
}

.content__wrapper > *:not(:first-child) {
  margin-top: 1.25rem;
}

.content__wrapper p {
  color: var(--text-muted);
  line-height: 1.7;
}

.content__wrapper .list > *:not(:first-child) {
  margin-top: 0.6rem;
}

.content__wrapper .list > * {
  padding-left: 20px;
}

.content__wrapper .list h3 {
  position: relative;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-color);
}

.content__wrapper .list h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--text-color);
}

.right__side {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.right__side .btn {
  width: 100%;
}

.input__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.btns__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btns__wrapper .btn {
  flex: 1;
}

.btns__wrapper .btn svg {
  margin-right: 6px;
}

.arrow_down {
  display: none;
}

.input__wrapper input {
  flex: 1;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 0 10px;
  font-size: 14px;
  transition: 0.3s all;
  background-color: var(--bg-color);
  outline: none;
  appearance: none;
  -moz-appearance: textfield;
}

.input__wrapper input:focus {
  border-color: var(--primary-color);
}

.input__wrapper input::placeholder {
  color: var(--text-color);
  opacity: 0.4;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input__wrapper select {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 0 10px;
  font-size: 14px;
  transition: 0.3s all;
  background-color: var(--bg-color);
  outline: none;
  appearance: none;
  width: 70px;
  -moz-appearance: textfield;
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23000' fill='%23000' stroke-width='0' viewBox='0 0 512 512' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

html[data-theme="dark"] .input__wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23fff' fill='%23fff' stroke-width='0' viewBox='0 0 512 512' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z'%3E%3C/path%3E%3C/svg%3E");
}

.product__hund__embed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.product__hund__embed a {
  display: inline-block;
}

.product__hund__embed img {
  width: 100%;
  max-width: 210px;
  object-fit: contain !important;
}

.footer {
  padding: 5rem 0 2.2rem;
  margin-top: 120px;
  border-top: 1px solid var(--border-color);
  text-align: left;
}

.comparison__modal_wrapper {
  width: 90%;
  max-width: 800px;
}

.footer__content__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal__links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.footer__legal__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__legal__links a:hover {
  color: var(--primary-color);
}

.footer__menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1170px;
}

.footer .disclaimer {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-top: 16px;
  margin-bottom: 10px;
}

.footer__menu__item {
  padding: 5px 5px;
  border-radius: 0.5rem;
  transition: 0.3s all;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 5px;
  display: inline-block;
  font-size: 14px;
}

.footer__menu__item a,
.footer__menu__item span {
  color: var(--gray-color);
}

.social__share_icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  list-style: none;
  margin-left: -5px;
}

.social__share_icons a {
  font-size: 16px;
  margin: 5px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  color: var(--text-color);
  height: 34px;
  width: 34px;
}

.social__share_icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.footer__content__top .container {
  display: flex;
  max-width: 1170px;
  padding: 0px 10px 5rem;
  gap: 30px;
}

.site__info {
  width: 40%;
  padding-right: 30px;
}

.footer__menu {
  width: 20%;
}

.copyright {
  text-align: left;
  font-size: 14px;
}

.footer__menu h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: left;
  padding-left: 8px;
}

.faqs__accordion .faqs__accordion__item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.faqs__accordion__item:hover {
  border-color: var(--primary-color);
}

.faqs__accordion__item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.faqs__accordion__item .faqs__accordion__item__header {
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
}

.faqs__accordion__item .faqs__accordion__item__header h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
}

.faqs__accordion__item__header .faqs__accordion__item__header__icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
    center no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all;
  cursor: pointer;
}

.faqs__accordion__item.active .faqs__accordion__item__header__icon {
  transform: translateY(-50%) rotate(180deg);
}

html[data-theme="dark"]
  .faqs__accordion__item__header
  .faqs__accordion__item__header__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.faqs__accordion__item__body {
  display: none;
}

.faqs h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faqs .container {
  max-width: 900px;
}

.faqs__accordion__item__body {
  padding: 0 20px 18px;
}

.faqs__accordion__item__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.mobile__apps__links {
  margin-bottom: 60px;
  margin-top: 60px;
}

.mobile__apps__links .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.mobile__apps__links .container a {
  display: flex;
}

.mobile__apps__links .container img {
  max-width: 170px;
  height: 50px;
  object-fit: contain;
}

.mobile__apps .container {
  display: flex;
  justify-content: center;
}

.mobile__apps__links__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile__apps__links__wrapper a {
  display: flex;
  transition: 0.3s all;
}

.mobile__apps__links__wrapper a:hover {
  transform: translateY(-3px);
}

.mobile__apps__links__wrapper img {
  max-width: 180px;
}

.mobile__apps__links__wrapper .appstore img {
  max-width: 170px;
}

.page__content {
  padding: 50px 0 0;
}

.page__content .container {
  max-width: 1050px;
}

.page__content h1 {
  font-size: 2rem;
}

.page__content__wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

.max-750 .container {
  max-width: 750px;
}

.highlighted {
  border-radius: var(--radius-md);
  background-color: var(--bg-elevated);
  padding: 20px;
  text-align: center;
}

html[data-theme="dark"] .highlighted {
  background-color: var(--bg-elevated);
}

video {
  max-width: 100%;
  border-radius: 0.5rem;
}

.bookmark__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  border: 1px dashed var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}

.pdf__preview {
  position: relative;
  padding-bottom: 70%;
  border-radius: 20px;
  overflow: hidden;
}

.pdf__preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__page_section .container {
  max-width: 1100px;
  text-align: left;
}

.content__page_section h2 {
  text-align: left;
}

.content__section li {
  margin-left: 17px;
}

.content__page_section h1 {
  font-size: 2rem;
}

.form__group {
  width: 100%;
  margin-bottom: 20px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 10px 15px;
  font-size: 14px;
  transition: 0.3s all;
  background-color: var(--bg-color);
}

.form__group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.selected__image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  padding: 5px;
  display: none;
  align-items: center;
  justify-content: center;
}

.selected__image .orignalSize {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #000000a6;
  padding: 5px 10px;
  border-radius: 13px 0px 13px 0px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.jq-icon-error {
  background-color: #9f0404;
  color: #f2dede;
  font-size: 15px;
  border-color: #ebccd1;
  background-size: 19px;
  border-radius: 8px;
  padding-left: 37px;
  box-shadow: 0 0 15px 0 #0000006e;
}

.selected__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn.outline {
  background-color: transparent;
  color: var(--primary-color);
}

.btn.outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact__form .btn {
  min-width: 150px;
}

.success__msg {
  display: none;
}

.max-800 .container {
  max-width: 800px;
}

.text-left {
  text-align: left !important;
}

.addblock_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--forground-color);
  z-index: 100000;
  display: none;
}

.addblock_popup > div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addblock_popup > div > div {
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  margin: auto;
}

.addblock_popup #animation__image {
  width: 100%;
  max-width: 450px;
  margin-top: -100px;
}

.addblock_popup h2 {
  font-size: 2rem;
}

.addblock_popup p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.popup__close__button {
  background-color: var(--bg-color);
  border: 0;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  z-index: 2;
}

.links__section {
  margin-top: 32px;
  padding-bottom: 10px;
}

.links__section .container {
  max-width: 900px;
}

.links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.links__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  text-decoration: none;
}

.links__chip:hover {
  border-color: var(--primary-color);
  background: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.links__chip__size {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.links__chip:hover .links__chip__size {
  color: var(--primary-color);
}

.links__chip__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.faqs .container {
  max-width: 800px;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ========== Homepage Content Sections ========== */
/* ========== Features List ========== */
.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  transition: all 0.25s ease;
}

.feature__item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
}

.feature__item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.feature__item p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ========== Use Cases List ========== */
.use__cases__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.use__case__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.25s ease;
}

.use__case__row:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-color);
}

.use__case__info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  text-align: left;
}

.use__case__info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.use__case__size {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary-color);
  white-space: nowrap;
}

.blog__cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.blog__card {
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}

.blog__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.25s ease;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  z-index: 1;
}

.blog__card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.blog__card:hover::before {
  width: 4px;
}

.blog__card__color {
  height: 6px;
  background: var(--primary-color);
}

.blog__card__content {
  padding: 20px 24px;
}

.blog__card__date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog__card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.blog__card__content h3 a {
  color: var(--text-color);
  text-decoration: none;
}

.blog__card__content h3 a:hover {
  color: var(--primary-color);
}

.blog__card__content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog__card__content .read__more {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.blog__section__footer {
  text-align: center;
  margin-top: 30px;
}

.blog__section__footer a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.blog__section__footer a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 575px) {
  .features__list {
    grid-template-columns: 1fr;
  }
  .use__case__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .blog__cards__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Blog Styles ========== */
.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 0 0;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

.blog__section .container {
  max-width: 900px;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.blog__grid .blog__card {
  display: block;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.blog__grid .blog__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.25s ease;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.blog__grid .blog__card:hover {
  text-decoration: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog__grid .blog__card:hover::before {
  width: 4px;
}

.blog__grid .blog__card__date {
  font-size: 13px;
  color: var(--text-muted);
}

.blog__grid .blog__card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 6px;
  text-align: left;
  color: var(--text-color);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.blog__grid .blog__card__excerpt {
  font-size: 14px;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog__grid .blog__card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

/* ========== Blog Hub Page ========== */
.blog__hub__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.blog__section h1 {
  margin-top: 4px;
}

/* ========== Pagination ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination__btn:hover:not(.disabled):not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: var(--primary-soft);
}

.pagination__btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pagination__btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========== Related Posts Section ========== */
.related__posts {
  max-width: 900px;
  margin: 0 auto;
}

.related__posts h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.related__posts .blog__grid {
  gap: 12px;
}

.related__posts .blog__grid .blog__card {
  padding: 20px 24px;
}

.related__posts .blog__grid .blog__card__title {
  font-size: 1.05rem;
  margin-top: 0;
}

.article__meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.content__section .breadcrumb + .article__body {
  margin-top: 8px;
}

.content__section .breadcrumb + .article__body h1 {
  margin-bottom: 12px;
}

/* Align breadcrumb with article body on blog article pages only */
.content__section .container > .breadcrumb + .article__body {
  /* already has max-width: 800px */
}
.content__section .container > .breadcrumb:has(+ .article__body) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article__body {
  max-width: 800px;
  margin: 0 auto;
}

.article__body h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-color);
}

.article__body h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.article__body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-color);
}

.article__body a {
  color: var(--primary-color);
  text-decoration: none;
}

.article__body a:hover {
  text-decoration: underline;
}

.article__body ul,
.article__body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article__body li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text-color);
}

.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.article__body th,
.article__body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}

.article__body th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.article__body tbody tr:nth-child(even) {
  background: var(--bg-elevated);
}

.related__articles {
  margin-top: 50px;
}

.related__articles .container {
  max-width: 840px;
}

.related__articles h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.related__articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.related__articles__grid .blog__card {
  display: block;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.related__articles__grid .blog__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.25s ease;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.related__articles__grid .blog__card:hover {
  text-decoration: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.related__articles__grid .blog__card:hover::before {
  width: 4px;
}

.related__articles__grid .blog__card__date {
  font-size: 13px;
  color: var(--text-muted);
}

.related__articles__grid .blog__card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 6px;
  color: var(--text-color);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.related__articles__grid .blog__card__excerpt {
  font-size: 14px;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.related__articles__grid .blog__card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.cta__banner {
  text-align: center;
  padding: 48px 36px;
  margin: 50px auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.cta__banner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.cta__banner p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.cta__banner a {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.cta__banner a:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 575px) {
  .cta__banner {
    padding: 36px 24px;
  }
  .cta__banner h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1255px) {
  .footer .container {
    max-width: 1000px;
  }
}

@media (max-width: 1060px) {
  .footer .container {
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 845px) {
  .footer__content__top .container {
    flex-wrap: wrap;
  }

  .site__info {
    width: 100%;
    padding-left: 8px;
  }

  .footer__menu {
    width: calc(33.33% - 30px);
  }
}

@media (max-width: 800px) {
  .hero__section .container {
    max-width: 100%;
  }

  .result__section .container {
    max-width: 100%;
  }

  .result__layout {
    flex-direction: column;
    gap: 16px;
  }

  .result__image__area {
    min-height: 250px;
  }

  .result__details {
    padding: 20px 16px;
  }

  .hero__layout {
    flex-direction: column;
    gap: 24px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__section h1 {
    text-align: center;
    font-size: 28px;
  }

  .hero__subtitle {
    text-align: center;
  }

  .hero__trust__pills {
    justify-content: center;
  }

  .hero__privacy {
    justify-content: center;
    text-align: center;
  }

  .hero__privacy svg {
    display: none;
  }

  .links__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .links__chip {
    padding: 10px 8px;
  }

  .links__chip__size {
    font-size: 15px;
  }

  .hero__section .right__side {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero__section .right__side .btn {
    grid-column: 1 / -1;
    max-width: 100%;
    width: 100%;
  }

  .hero__section,
  .result__section {
    padding: 60px 0 0;
  }
}

@media (min-width: 768px) {
  .header__menu_dropdown {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hero__section h1 {
    font-size: 24px;
  }

  .hero__pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .btns__wrapper {
    flex-direction: column;
  }

  .btns__wrapper .btn {
    width: 100%;
  }

  .toogle_menu {
    display: block;
  }

  .header__menu {
    position: fixed;
    height: 100vh;
    top: -20px;
    left: -321px;
    width: 300px;
    border-right: 1px solid var(--border-color);
    background-color: var(--bg-color);
    z-index: 1002;
    transition: 0.3s all;
    overflow: auto;
  }

  body.open__menu .header__menu {
    left: -16px;
  }

  .toggle_button {
    margin-left: auto;
  }

  .mobile_only {
    display: block;
  }

  .header__menu .header__logo {
    padding: 28px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    background-color: var(--bg-color);
    z-index: 4;
    top: 0;
  }

  .header__menu_list {
    flex-direction: column;
    padding: 20px;
  }

  .header__menu_list li {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }

  .header__menu_list li a {
    padding: 7px 15px !important;
    border-radius: 5px;
    display: block;
  }

  .header__menu_list li.active > a {
    background-color: var(--forground-color);
  }

  .header__menu_list li span {
    display: none;
  }

  .header__menu_dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    border: none;
    width: 100%;
    transition: none;
  }

  .has__submenu .header__menu_dropdown {
    display: none;
    padding-top: 10px;
    padding-left: 10px;
  }

  .has__submenu {
    position: relative;
  }

  .has__submenu .arrow_down {
    content: "";
    position: absolute;
    right: -10px;
    top: -2px;
    height: 40px;
    width: 50px;
    transition: 0.3s all;
    background-image: url("data:image/svg+xml,%3Csvg stroke='%23000' fill='%23000' stroke-width='0' viewBox='0 0 512 512' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    z-index: 1;
    display: flex;
    cursor: pointer;
  }

  html[data-theme="dark"] .has__submenu .arrow_down {
    background-image: url("data:image/svg+xml,%3Csvg stroke='%23fff' fill='%23fff' stroke-width='0' viewBox='0 0 512 512' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z'%3E%3C/path%3E%3C/svg%3E");
  }

  .has__submenu.active .arrow_down {
    transform: rotate(180deg);
  }

  .close__overlay {
    position: fixed;
    top: -17px;
    left: -10px;
    width: calc(100% + 32px);
    height: 100vh;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }

  body.open__menu .close__overlay {
    display: block;
  }

  .content__wrapper {
    padding: 24px;
  }

  .content__wrapper h2 {
    font-size: 1.2rem;
  }

  .page__content h1,
  .content__wrapper h1 {
    font-size: 1.4rem;
  }

  .blog__grid .blog__card {
    padding: 20px 24px;
  }

  .blog__grid .blog__card__title {
    font-size: 1.05rem;
  }

  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__content__top .container {
    padding-bottom: 3.5rem;
  }

  .footer__content__bottom {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 575px) {
  .site__info {
    width: 100%;
  }

  .footer__menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .uploadBox {
    height: 220px;
    min-height: 220px;
  }

  .hero__section .container {
    max-width: 100%;
  }

  .hero__section h1 {
    font-size: 22px;
  }

  .hero__trust__pills {
    gap: 8px;
  }

  .result__stat__value {
    font-size: 17px;
  }

  .links__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
