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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  overflow-x: hidden;
  cursor: none;
}

p {
  line-height: 1.7;
  color: #6b6b6b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

hr.thin {
  border-color: #e4e2de;
  opacity: 1;
}

section {
  position: relative;
}

a {
  text-decoration: none;
}

.display-giant {
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1.16;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.display-lg {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: -0.01em;
}

.accent {
  color: #E22929;
}

.muted {
  color: #6b6b6b;
}

.section-pad {
  padding: 120px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.gap-section {
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .section-pad {
    padding: 80px 0;
  }
}
#cursor {
  width: 12px;
  height: 12px;
  background: #E22929;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid #E22929;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.5;
}

body:hover #cursor {
  opacity: 1;
}

.blob-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob-wrap svg {
  width: 100%;
  height: 100%;
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E22929;
  background: rgba(226, 41, 41, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.label-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #E22929;
  border-radius: 50%;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E22929;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.btn-red .arrow {
  transition: transform 0.3s;
}
.btn-red:hover {
  background: #0a0a0a;
  color: #fff;
  transform: translateY(-2px);
}
.btn-red:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #0a0a0a;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid #e4e2de;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.btn-outline:hover {
  border-color: #E22929;
  color: #E22929;
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #E22929;
  z-index: 9997;
  width: 0%;
}

#btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  background: #E22929;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(226, 41, 41, 0.35);
}
#btt.show {
  opacity: 1;
  pointer-events: auto;
}
#btt:hover {
  transform: translateY(-4px);
  background: #0a0a0a;
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 #e4e2de;
}
#mainNav.scrolled .nav-links a {
  color: #0a0a0a;
}
#mainNav.scrolled .nav-links a:hover {
  color: #E22929;
}
#mainNav.scrolled .nav-logo.logo-dark {
  display: block;
}
#mainNav.scrolled .nav-logo.logo-white {
  display: none;
}

.nav-logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-logo.logo-dark {
  display: none;
}
.nav-logo.logo-white {
  display: block;
}
.nav-logo span {
  color: #E22929;
}
.nav-logo img {
  width: 140px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover {
  color: #E22929;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: #E22929;
}

@media (max-width: 991px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(226, 41, 41, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(226, 41, 41, 0);
  }
}
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 30px 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.hero-liquid {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, 62vw);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content p#heroSub {
  font-size: 1.05rem;
  max-width: 560px;
  color: #ffffff;
}
.hero-content .btn-outline {
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e4e2de;
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  font-size: 0.78rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #E22929;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title .line {
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  color: #ffffff;
}
.hero-title .line span#hl3 {
  color: #E22929;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat-item .num {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.stat-item .num span {
  color: #E22929;
}
.stat-item p {
  font-size: 0.8rem;
  margin-top: 4px;
  margin-bottom: 0;
  color: #f5f4f2;
}

.hero-tags {
  position: absolute;
  right: 4%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.hero-tag {
  background: #ffffff;
  border: 1.5px solid #e4e2de;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
  .hero-liquid {
    display: none;
  }
  .hero-tags {
    display: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: flex;
  gap: 0;
  border-top: 1px solid #e4e2de;
  border-bottom: 1px solid #e4e2de;
  background: #f5f4f2;
  padding: 18px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  flex-shrink: 0;
}
.marquee-inner.rev {
  animation-direction: reverse;
}

.marquee-item {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-item .sep {
  color: #E22929;
  font-size: 1.2rem;
}

#about {
  background: #ffffff;
}

.about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-visual-inner {
  width: 100%;
  height: 100%;
  background: #f5f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-inner img {
  width: 100%;
}

.about-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #e4e2de;
}
.about-card .title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.about-card span {
  font-size: 0.75rem;
  color: #6b6b6b;
}
.about-card .sub {
  font-size: 0.8rem;
  color: #6b6b6b;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #e4e2de;
}
.feature-item:first-child {
  border-top: 1px solid #e4e2de;
}

.feature-num {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E22929;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(226, 41, 41, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-body p {
  font-size: 0.85rem;
}

#services {
  background: #f5f4f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #e4e2de;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 41, 41, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(226, 41, 41, 0.1);
}
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover .service-letter {
  opacity: 0.3;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.service-letter {
  font-family: "Outfit", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: #E22929;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  transition: opacity 0.4s;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(226, 41, 41, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #E22929;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.3s;
}
.service-link:hover {
  gap: 14px;
}

#process {
  background: #f5f4f2;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  padding: 30px 0;
  border-bottom: 1px solid #e4e2de;
  align-items: start;
  position: relative;
}
.process-step:first-child {
  border-top: 1px solid #e4e2de;
}
.process-step:hover .step-num {
  background: #E22929;
  color: #fff;
}
@media (max-width: 600px) {
  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
  }
}

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-num {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E22929;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #E22929;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.88rem;
  max-width: 520px;
}

.step-tag {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f4f2;
  border-radius: 8px;
  padding: 6px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#projects {
  background: #ffffff;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e4e2de;
  align-items: center;
}
.project-row:last-child {
  border-bottom: unset;
  padding-bottom: 0px;
}
@media (max-width: 991px) {
  .project-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.project-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.project-tag {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff;
  border: 1px solid #e4e2de;
  padding: 5px 12px;
  border-radius: 100px;
}
.project-tag.red {
  background: rgba(226, 41, 41, 0.08);
  color: #E22929;
  border-color: transparent;
}

.project-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.project-desc {
  font-size: 0.88rem;
  max-width: 480px;
}

.project-link-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s;
}
.case-link:hover {
  color: #E22929;
}

.project-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #ffffff;
  border: 1px solid #e4e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.project-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-visual-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.project-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.project-stat .val {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #E22929;
  letter-spacing: -0.02em;
}
.project-stat .lab {
  font-size: 0.75rem;
  color: #6b6b6b;
}

.pv-1 {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
}
.pv-1 .lbl {
  color: #E22929;
}

.pv-2 {
  background: linear-gradient(135deg, #f5f5ff, #ffe5f5);
}
.pv-2 .lbl {
  color: #9B59B6;
}

.pv-3 {
  background: linear-gradient(135deg, #f5fff5, #e5fff5);
}
.pv-3 .lbl {
  color: #27AE60;
}

#testimonials {
  background: #f5f4f2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: #f5f4f2;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid #e4e2de;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card:hover {
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.testi-quote {
  font-size: 2.5rem;
  color: #E22929;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.stars {
  color: #E22929;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: #E22929;
  flex-shrink: 0;
}

.testi-author-info .name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-author-info .role {
  font-size: 0.78rem;
  color: #6b6b6b;
}

#blog {
  background: #f5f4f2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4e2de;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 0.83rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.blog-thumb-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #E22929;
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-thumb-1 {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  color: rgba(226, 41, 41, 0.12);
}

.blog-thumb-2 {
  background: linear-gradient(135deg, #f5f0ff, #e5d5ff);
  color: rgba(150, 100, 220, 0.1);
}

.blog-thumb-3 {
  background: linear-gradient(135deg, #f0f7ff, #d5e8ff);
  color: rgba(50, 120, 220, 0.1);
}

.blog-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.75rem;
  color: #6b6b6b;
  margin-bottom: 12px;
}
.blog-meta .sep {
  color: #e4e2de;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E22929;
  text-decoration: none;
  transition: gap 0.3s;
}
.read-more:hover {
  gap: 12px;
}

#contact {
  background: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}
#contact p {
  color: rgba(255, 255, 255, 0.55);
}
#contact hr.thin {
  border-color: rgba(255, 255, 255, 0.1);
}
#contact .label-chip--dark {
  background: rgba(226, 41, 41, 0.15);
  color: #E22929;
}
#contact .contact-form-box {
  background: #0a0a0a;
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-grid h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  width: 100%;
  resize: none;
}
.form-control-dark::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-control-dark:focus {
  outline: none;
  border-color: #E22929;
  background: rgba(226, 41, 41, 0.05);
}

.contact-info h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-detail:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(226, 41, 41, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cd-text .label {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.cd-text .val {
  font-size: 0.9rem;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.soc-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.soc-btn:hover {
  border-color: #E22929;
  color: #E22929;
  background: rgba(226, 41, 41, 0.1);
}

.cta-big {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-big h2 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #ffffff;
}
.cta-big h2 .gr {
  background: linear-gradient(90deg, #E22929, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.footer-logo span {
  color: #E22929;
}
.footer-logo img {
  width: 150px;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-col ul a:hover {
  color: #E22929;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

@keyframes morph {
  0%, 100% {
    d: path("M60,30 C80,10 110,20 120,50 C130,80 110,110 80,115 C50,120 20,100 15,70 C10,40 40,50 60,30Z");
  }
  33% {
    d: path("M65,25 C90,5 115,30 118,60 C121,90 95,115 65,112 C35,109 10,85 12,55 C14,25 40,45 65,25Z");
  }
  66% {
    d: path("M55,35 C75,12 108,18 122,48 C136,78 118,108 85,118 C52,128 18,105 13,73 C8,41 35,58 55,35Z");
  }
}
.svg-morph {
  animation: morph 10s ease-in-out infinite;
  transform-origin: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E22929;
  background: rgba(226, 41, 41, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.label-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #E22929;
  border-radius: 50%;
}

.page-hero {
  padding: 160px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #ffffff;
}

.accent {
  color: #E22929;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 24px;
}
.breadcrumb-row a {
  color: #6b6b6b;
  transition: color 0.2s;
  cursor: none;
}
.breadcrumb-row a:hover {
  color: #E22929;
}
.breadcrumb-row .sep {
  color: #e4e2de;
}
.breadcrumb-row .current {
  color: #6b6b6b;
}

.marquee-track {
  display: flex;
  border-top: 1px solid #e4e2de;
  border-bottom: 1px solid #e4e2de;
  background: #f5f4f2;
  padding: 16px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee-item .sep {
  color: #E22929;
}

.filter-bar {
  padding: 40px 0;
  border-bottom: 1px solid #e4e2de;
  background: #ffffff;
  position: sticky;
  top: 64px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tab {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid #e4e2de;
  background: transparent;
  color: #6b6b6b;
  cursor: none;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.filter-tab:hover {
  border-color: #E22929;
  color: #E22929;
}
.filter-tab.active {
  background: #E22929;
  border-color: #E22929;
  color: #fff;
}

.search-box {
  position: relative;
  margin-left: auto;
}
@media (max-width: 767px) {
  .search-box {
    margin-left: 0;
    width: 100%;
  }
}

.search-input {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  padding: 10px 18px 10px 40px;
  border: 1.5px solid #e4e2de;
  border-radius: 100px;
  outline: none;
  transition: border-color 0.3s;
  width: 220px;
  cursor: none;
}
.search-input:focus {
  border-color: #E22929;
}
@media (max-width: 767px) {
  .search-input {
    width: 100%;
  }
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b6b6b;
  font-size: 0.9rem;
  pointer-events: none;
}

.blog-section {
  padding: 80px 0;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1099px) {
  .blog-main-grid {
    grid-template-columns: 1fr;
  }
}

.featured-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e4e2de;
  background: #ffffff;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 40px;
}
.featured-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.featured-thumb {
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 7rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #E22929;
  color: #fff;
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-read {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0a0a0a;
}

.featured-body {
  padding: 36px 40px;
}
@media (max-width: 600px) {
  .featured-body {
    padding: 24px 20px;
  }
}
.featured-body .meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.78rem;
  color: #6b6b6b;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.featured-body .cat-tag {
  background: rgba(226, 41, 41, 0.08);
  color: #E22929;
  border-radius: 100px;
  padding: 3px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.featured-body h2 a {
  color: #0a0a0a;
  transition: color 0.2s;
  cursor: none;
}
.featured-body h2 a:hover {
  color: #E22929;
}
.featured-body p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 600px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E22929;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.author-role {
  font-size: 0.75rem;
  color: #6b6b6b;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: #E22929;
  transition: gap 0.3s;
  cursor: none;
}
.read-more:hover {
  gap: 12px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 767px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4e2de;
  background: #ffffff;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.post-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  position: relative;
}

.thumb-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #E22929;
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.post-body {
  padding: 26px;
}

.post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  color: #6b6b6b;
  margin-bottom: 10px;
}
.post-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e4e2de;
}

.post-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-card h3 a {
  color: #0a0a0a;
  transition: color 0.2s;
  cursor: none;
}
.post-card h3 a:hover {
  color: #E22929;
}
.post-card p {
  font-size: 0.83rem;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #E22929;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.mini-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.t1 {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  color: rgba(226, 41, 41, 0.1);
}

.t2 {
  background: linear-gradient(135deg, #f5f0ff, #e5d5ff);
  color: rgba(150, 100, 220, 0.1);
}

.t3 {
  background: linear-gradient(135deg, #f0f7ff, #d5e8ff);
  color: rgba(50, 120, 220, 0.1);
}

.t4 {
  background: linear-gradient(135deg, #f0fff5, #d5ffe8);
  color: rgba(39, 174, 96, 0.1);
}

.t5 {
  background: linear-gradient(135deg, #fffbf0, #ffe8c5);
  color: rgba(230, 160, 30, 0.1);
}

.t6 {
  background: linear-gradient(135deg, #fff0fb, #ffd5f5);
  color: rgba(200, 50, 180, 0.1);
}

.pagination-wrap {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pg-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid #e4e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #6b6b6b;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.pg-btn:hover {
  border-color: #E22929;
  color: #E22929;
}
.pg-btn.active {
  background: #E22929;
  border-color: #E22929;
  color: #fff;
}

.pg-arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid #e4e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.pg-arrow:hover {
  border-color: #E22929;
  color: #E22929;
}

.sidebar {
  position: sticky;
  top: 160px;
}

.sidebar-widget {
  background: #f5f4f2;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid #e4e2de;
}
.sidebar-widget h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.sidebar-search {
  position: relative;
  margin-bottom: 0;
}
.sidebar-search input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1.5px solid #e4e2de;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.3s;
  cursor: none;
}
.sidebar-search input:focus {
  border-color: #E22929;
}
.sidebar-search .si {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b6b6b;
  pointer-events: none;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e4e2de;
  cursor: none;
}
.cat-item:last-child {
  border-bottom: none;
}
.cat-item .name {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  transition: color 0.2s;
}
.cat-item:hover .name {
  color: #E22929;
}
.cat-item .count {
  background: #ffffff;
  border: 1px solid #e4e2de;
  border-radius: 100px;
  padding: 2px 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #6b6b6b;
}

.popular-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e4e2de;
  align-items: flex-start;
}
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pop-thumb {
  width: 64px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pop-body .pop-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0a0a;
  transition: color 0.2s;
  cursor: none;
  display: block;
}
.pop-body .pop-title:hover {
  color: #E22929;
}
.pop-body .pop-date {
  font-size: 0.72rem;
  color: #6b6b6b;
  margin-top: 3px;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid #e4e2de;
  color: #6b6b6b;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.tag-pill:hover {
  border-color: #E22929;
  color: #E22929;
  background: rgba(226, 41, 41, 0.08);
}

.newsletter-widget {
  background: #0a0a0a;
  border-radius: 16px;
  padding: 28px;
  color: #fff;
}
.newsletter-widget h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-widget p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.nl-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.3s;
  cursor: none;
}
.nl-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.nl-input:focus {
  border-color: #E22929;
}

.nl-btn {
  width: 100%;
  padding: 12px;
  background: #E22929;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  cursor: none;
  transition: background 0.3s;
}
.nl-btn:hover {
  background: #c41f1f;
}

.article-hero {
  padding: 160px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4e2de;
  margin-bottom: 28px;
}
.breadcrumb-row a {
  color: #e4e2de;
  transition: color 0.2s;
  cursor: none;
}
.breadcrumb-row a:hover {
  color: #E22929;
}
.breadcrumb-row .sep {
  color: #e4e2de;
}

.article-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cat-pill {
  background: rgba(226, 41, 41, 0.08);
  color: #E22929;
  border-radius: 100px;
  padding: 5px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 5px;
  color: #ffffff;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid #e4e2de;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E22929;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.author-role {
  font-size: 0.75rem;
  color: #6b6b6b;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b6b6b;
}

.share-row {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid #e4e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
  font-size: 0.9rem;
}
.share-btn:hover {
  border-color: #E22929;
  color: #E22929;
  background: rgba(226, 41, 41, 0.08);
}

.article-cover {
  margin: 48px 0 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  position: relative;
}

.cover-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(226, 41, 41, 0.12);
  position: relative;
}
.cover-inner::after {
  content: "CORE WEB VITALS";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  background: linear-gradient(to top, rgba(255, 245, 245, 0.95) 60%, transparent);
}
@media (max-width: 767px) {
  .cover-inner::after {
    font-size: 1rem;
    padding: 16px 20px;
  }
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: 72px 0 100px;
  align-items: start;
}
@media (max-width: 1099px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-body {
  max-width: 720px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 28px;
}
.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin: 52px 0 20px;
  color: #0a0a0a;
}
.article-body h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 36px 0 14px;
  color: #0a0a0a;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 28px;
}
.article-body li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 8px;
}
.article-body li::marker {
  color: #E22929;
}
.article-body strong {
  font-weight: 700;
  color: #0a0a0a;
}
.article-body a {
  color: #E22929;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  cursor: none;
}
.article-body a:hover {
  border-color: #E22929;
}

.callout {
  background: #f5f4f2;
  border-left: 4px solid #E22929;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.callout p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.callout-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E22929;
  margin-bottom: 8px;
}

.code-block {
  background: #0a0a0a;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.code-block pre {
  color: #e8e8e8;
  font-size: 0.85rem;
  line-height: 1.7;
  font-family: "Courier New", monospace;
  margin: 0;
  overflow-x: auto;
}
.code-block .code-lang {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.code-keyword {
  color: #ff6b6b;
}

.code-string {
  color: #a8e6a3;
}

.code-comment {
  color: rgba(255, 255, 255, 0.3);
}

.code-prop {
  color: #82c4ff;
}

.code-num {
  color: #ffd700;
}

.pull-quote {
  border-top: 3px solid #E22929;
  border-bottom: 1px solid #e4e2de;
  padding: 32px 0;
  margin: 48px 0;
  text-align: center;
}
.pull-quote p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1.4;
  margin-bottom: 0;
}
.pull-quote .pq-author {
  font-size: 0.78rem;
  color: #6b6b6b;
  margin-top: 12px;
  font-family: "Inter", sans-serif;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 600px) {
  .metric-row {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  background: #f5f4f2;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e4e2de;
  text-align: center;
}
.metric-card .val {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #E22929;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-card .lbl {
  font-size: 0.75rem;
  color: #6b6b6b;
  margin-top: 6px;
}
.metric-card .desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-top: 4px;
}

.article-img {
  border-radius: 16px;
  overflow: hidden;
  margin: 36px 0;
  background: #f5f4f2;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e2de;
}

.article-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-direction: column;
  gap: 8px;
}

.img-caption {
  font-size: 0.78rem;
  color: #6b6b6b;
  text-align: center;
  margin-top: -16px;
  margin-bottom: 28px;
  font-style: italic;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 0;
}

.a-tag {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid #e4e2de;
  color: #6b6b6b;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.a-tag:hover {
  border-color: #E22929;
  color: #E22929;
}

.article-share-section {
  border-top: 1px solid #e4e2de;
  border-bottom: 1px solid #e4e2de;
  padding: 28px 0;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.share-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.share-btns {
  display: flex;
  gap: 10px;
}

.s-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid #e4e2de;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0a0a0a;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.s-btn:hover {
  border-color: #E22929;
  color: #E22929;
}

.author-bio {
  background: #f5f4f2;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 64px 0;
  border: 1px solid #e4e2de;
}
@media (max-width: 600px) {
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E22929;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.bio-content .bio-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.bio-content .bio-role {
  font-size: 0.78rem;
  color: #E22929;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bio-content p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.bio-links {
  display: flex;
  gap: 10px;
}

.bio-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid #e4e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
  font-size: 0.85rem;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.bio-link:hover {
  border-color: #E22929;
  color: #E22929;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0 0;
}
@media (max-width: 600px) {
  .post-nav {
    grid-template-columns: 1fr;
  }
}

.pnav-card {
  background: #f5f4f2;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e4e2de;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}
.pnav-card:hover {
  border-color: #E22929;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}
.pnav-card.next {
  text-align: right;
}

.pnav-dir {
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.pnav-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.35;
}

.comments-section {
  margin-top: 80px;
}
.comments-section h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.comment {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #e4e2de;
}
.comment:first-of-type {
  border-top: 1px solid #e4e2de;
}
.comment.reply {
  padding-left: 60px;
}
@media (max-width: 600px) {
  .comment.reply {
    padding-left: 20px;
  }
}

.c-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.c-body .c-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.c-body p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.c-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.c-date {
  font-size: 0.75rem;
  color: #6b6b6b;
}

.c-reply {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E22929;
  cursor: none;
}
.c-reply:hover {
  opacity: 0.7;
}

.comment-form {
  background: #f5f4f2;
  border-radius: 20px;
  padding: 36px;
  margin-top: 48px;
  border: 1px solid #e4e2de;
}
.comment-form h4 {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cf-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.cf-input {
  padding: 13px 16px;
  border: 1.5px solid #e4e2de;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.3s;
  cursor: none;
}
.cf-input:focus {
  border-color: #E22929;
}
.cf-inputtextarea {
  resize: vertical;
  min-height: 120px;
}

textarea.cf-input {
  resize: vertical;
  min-height: 120px;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #f5f4f2;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #e4e2de;
}
.sidebar-widget h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 18px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toc-item {
  padding: 9px 0;
  border-bottom: 1px solid #e4e2de;
  cursor: none;
}
.toc-item:last-child {
  border-bottom: none;
}
.toc-item a {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b6b6b;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.2s;
  cursor: none;
}
.toc-item a:hover, .toc-item a.active {
  color: #E22929;
}
.toc-item a .toc-num {
  color: #E22929;
  flex-shrink: 0;
  font-size: 0.65rem;
  padding-top: 2px;
}
.toc-item.h3 a {
  font-size: 0.75rem;
  font-weight: 600;
  padding-left: 18px;
}

.read-ring-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e4e2de;
  border-radius: 14px;
  margin-bottom: 20px;
}
.read-ring-wrap svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.ring-bg {
  fill: none;
  stroke: #e4e2de;
  stroke-width: 4;
}

.ring-fill {
  fill: none;
  stroke: #E22929;
  stroke-width: 4;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.3s;
}

.ring-text {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  fill: #0a0a0a;
}

.ring-info .ri-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}
.ring-info .ri-sub {
  font-size: 0.7rem;
  color: #6b6b6b;
}

.related-mini {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e4e2de;
  align-items: flex-start;
}
.related-mini:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rm-thumb {
  width: 60px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0a0a;
  display: block;
  cursor: none;
  transition: color 0.2s;
}
.rm-title:hover {
  color: #E22929;
}

.rm-date {
  font-size: 0.7rem;
  color: #6b6b6b;
  margin-top: 3px;
}

.cta-widget {
  background: #0a0a0a;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.cta-widget h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.cta-widget p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.cta-widget .cw-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: #E22929;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: none;
  transition: background 0.3s;
}
.cta-widget .cw-btn:hover {
  background: #c41f1f;
}

.related-section {
  background: #f5f4f2;
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4e2de;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.related-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.rc-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E22929;
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-body {
  padding: 22px;
}

.related-meta {
  font-size: 0.75rem;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.related-card h4 {
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
}
.related-card h4 a {
  color: #0a0a0a;
  transition: color 0.2s;
  cursor: none;
}
.related-card h4 a:hover {
  color: #E22929;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E22929;
  transition: gap 0.3s;
  cursor: none;
}
.read-more:hover {
  gap: 12px;
}

#readProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #E22929, #ff4d4d);
  z-index: 9997;
  width: 0%;
  transition: width 0.1s;
}

#faq {
  background: #fff;
}
#faq .faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
#faq .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
#faq .faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
#faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0a0a0a;
  transition: color 0.2s ease;
}
#faq .faq-item .faq-question:hover {
  color: #E22929;
}
#faq .faq-item .faq-question:focus-visible {
  outline: 2px solid #E22929;
  outline-offset: 2px;
  border-radius: 2px;
}
#faq .faq-item .faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
#faq .faq-item .faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  border-radius: 2px;
}
#faq .faq-item .faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background: currentColor;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#faq .faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#faq .faq-item .faq-answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#faq .faq-item .faq-answer-inner p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #6b6b6b;
}
#faq .faq-item .faq-answer-inner p strong {
  color: #0a0a0a;
  font-weight: 600;
}
#faq .faq-item.is-open .faq-question {
  color: #E22929;
}
#faq .faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
#faq .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
#faq .faq-item.is-open .faq-answer-inner {
  padding-bottom: 1.6rem;
}

@media (max-width: 767px) {
  #faq .faq-question {
    font-size: 0.93rem;
    padding: 1.2rem 0;
    gap: 1rem;
  }
  #faq .faq-answer-inner p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}/*# sourceMappingURL=style.css.map */