
/* ==========================================================================
   WHOLESALE ANIME, BOW, DOG, CUP, CHRISTMAS & HORROR STRAW TOPPERS
   Strictly Scoped under #st-wrap
   - Aesthetic Palette:
     * Accent Coral / Rose: #FF5E62 / #F43F5E
     * Electric Cyan / Teal: #0284C7 / #0EA5E9 / #38BDF8
     * Royal Purple: #8B5CF6 / #C084FC
     * Dark Gothic Slate: #0F172A / #1E293B / #334155
     * Surface Neutral: #F8FAFC / #FFFFFF / Borders: #E2E8F0
   - 100% Pure CSS Animations (Zero JavaScript, UEESHOP Rich-Text Editor Compliant)
   - Mobile-First Responsive Flex/Grid Layout
   ========================================================================== */
#st-wrap {
  --st-coral: #FF5E62;
  --st-coral-hover: #E84D51;
  --st-coral-bg: rgba(255, 94, 98, 0.1);
  --st-teal: #0284C7;
  --st-teal-light: #0EA5E9;
  --st-teal-bg: rgba(14, 165, 233, 0.08);
  --st-purple: #8B5CF6;
  --st-purple-bg: rgba(139, 92, 246, 0.1);
  --st-dark: #0F172A;
  --st-slate: #1E293B;
  --st-muted: #64748B;
  --st-line: #E2E8F0;
  --st-bg: #F8FAFC;
  --st-card: #FFFFFF;
  --st-head: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --st-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--st-bg);
  color: var(--st-dark);
  font-family: var(--st-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 10px;
}

#st-wrap,
#st-wrap * {
  box-sizing: border-box;
}

#st-wrap h1, #st-wrap h2, #st-wrap h3, #st-wrap h4, #st-wrap p, #st-wrap ul, #st-wrap ol, #st-wrap figure {
  margin: 0;
  padding: 0;
}

#st-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* CENTER ALIGNMENT UTILITY & HEADINGS */
.st-center-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.st-section-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 860px !important;
  margin: 0 auto 35px auto !important;
}

.st-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--st-coral-bg);
  color: var(--st-coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.st-section-title {
  font-family: var(--st-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--st-dark);
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center !important;
}

.st-section-desc {
  font-size: 15px;
  color: var(--st-muted);
  line-height: 1.6;
  max-width: 720px;
  text-align: center !important;
}

/* TOP ANNOUNCEMENT BAR */
.st-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.st-announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.st-announcement-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--st-coral);
}

/* MARQUEE RUNNING TICKER */
.st-marquee-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #FFFFFF;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 45px;
  border-radius: 14px;
  position: relative;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}

.st-marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: stMarquee 32s linear infinite;
  font-family: var(--st-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-marquee-track:hover {
  animation-play-state: paused;
}

.st-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.st-marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--st-coral);
  box-shadow: 0 0 8px var(--st-coral);
}

@keyframes stMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO SHOWCASE BANNER */
.st-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #172554 100%);
  border-radius: 24px;
  padding: 55px 40px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.4);
}

.st-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(255, 94, 98, 0.15) 50%, transparent 70%);
  pointer-events: none;
}

.st-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.st-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.st-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 94, 98, 0.18);
  border: 1px solid rgba(255, 94, 98, 0.4);
  color: #FF8A8D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.st-hero h1 {
  font-family: var(--st-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #FFFFFF;
  text-align: center;
}

.st-hero h1 span {
  background: linear-gradient(90deg, #FF7B79 0%, #C084FC 50%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-fill-color: transparent;
}

.st-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: #CBD5E1;
  max-width: 820px;
  margin-bottom: 30px;
  text-align: center;
}

.st-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: #F8FAFC;
}

.st-hero-badge svg {
  width: 16px;
  height: 16px;
  fill: #38BDF8;
}

/* CORE FEATURES 4-COL GRID */
.st-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.st-feature-card {
  background: var(--st-card);
  border-radius: 16px;
  padding: 26px 20px;
  border: 1px solid var(--st-line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.1);
  border-color: #CBD5E1;
}

.st-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--st-teal-bg);
  color: var(--st-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.st-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.st-feature-card h3 {
  font-family: var(--st-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--st-dark);
}

.st-feature-card p {
  font-size: 13.5px;
  color: var(--st-muted);
  line-height: 1.55;
}

/* PURE CSS 6-SLIDE SPOTLIGHT CAROUSEL (ZERO JAVASCRIPT) */
.st-carousel-container {
  position: relative;
  margin-bottom: 60px;
  width: 100% !important;
}

.st-carousel-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--st-card);
  border: 1px solid var(--st-line);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  width: 100% !important;
}

.st-carousel-slides {
  display: flex;
  width: 100%;
  animation: stSlideAnim 24s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.st-carousel-wrapper:hover .st-carousel-slides,
.st-carousel-wrapper:hover .st-dot {
  animation-play-state: paused;
}

@keyframes stSlideAnim {
  0%, 13% {
    transform: translateX(0%);
  }
  16.6%, 29.6% {
    transform: translateX(-100%);
  }
  33.3%, 46.3% {
    transform: translateX(-200%);
  }
  50%, 63% {
    transform: translateX(-300%);
  }
  66.6%, 79.6% {
    transform: translateX(-400%);
  }
  83.3%, 96.3% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(0%);
  }
}

.st-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #FFFFFF;
}

.st-slide-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-carousel-slide:hover .st-slide-media img {
  transform: scale(1.04);
}

.st-slide-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.st-slide-badge {
  display: inline-block;
  align-self: center;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--st-coral-bg);
  color: var(--st-coral);
  margin-bottom: 14px;
}

.st-slide-title {
  font-family: var(--st-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--st-dark);
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

.st-slide-desc {
  font-size: 14.5px;
  color: var(--st-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  text-align: center;
}

.st-slide-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  width: 100%;
  max-width: 400px;
}

.st-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--st-slate);
  text-align: left;
}

.st-bullet-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--st-teal-bg);
  color: var(--st-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-bullet-icon svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

/* 6-DOT SYNCHRONIZED INDICATOR BAR */
.st-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.st-dot {
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.4);
  transition: all 0.3s ease;
}

.st-dot-1 {
  animation: stDot1 24s infinite;
}
.st-dot-2 {
  animation: stDot2 24s infinite;
}
.st-dot-3 {
  animation: stDot3 24s infinite;
}
.st-dot-4 {
  animation: stDot4 24s infinite;
}
.st-dot-5 {
  animation: stDot5 24s infinite;
}
.st-dot-6 {
  animation: stDot6 24s infinite;
}

@keyframes stDot1 {
  0%, 13% { width: 32px; background: var(--st-coral); }
  16.6%, 100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}
@keyframes stDot2 {
  0%, 13% { width: 9px; background: rgba(148, 163, 184, 0.4); }
  16.6%, 29.6% { width: 32px; background: var(--st-coral); }
  33.3%, 100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}
@keyframes stDot3 {
  0%, 29.6% { width: 9px; background: rgba(148, 163, 184, 0.4); }
  33.3%, 46.3% { width: 32px; background: var(--st-coral); }
  50%, 100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}
@keyframes stDot4 {
  0%, 46.3% { width: 9px; background: rgba(148, 163, 184, 0.4); }
  50%, 63% { width: 32px; background: var(--st-coral); }
  66.6%, 100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}
@keyframes stDot5 {
  0%, 63% { width: 9px; background: rgba(148, 163, 184, 0.4); }
  66.6%, 79.6% { width: 32px; background: var(--st-coral); }
  83.3%, 100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}
@keyframes stDot6 {
  0%, 79.6% { width: 9px; background: rgba(148, 163, 184, 0.4); }
  83.3%, 96.3% { width: 32px; background: var(--st-coral); }
  100% { width: 9px; background: rgba(148, 163, 184, 0.4); }
}

/* THEMATIC SHOWCASE PORTFOLIO (3x3 BALANCED 9-CARD GRID) */
.st-portfolio-section {
  margin-bottom: 60px;
}

.st-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.st-portfolio-card {
  background: var(--st-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--st-line);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.st-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
  border-color: #CBD5E1;
}

.st-card-image-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F1F5F9;
}

.st-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-portfolio-card:hover .st-card-image-box img {
  transform: scale(1.05);
}

.st-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.st-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.st-card-info h4 {
  font-family: var(--st-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--st-dark);
  margin-bottom: 6px;
  text-align: center;
}

.st-card-info p {
  font-size: 13px;
  color: var(--st-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
  text-align: center;
}

.st-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--st-slate);
  border-top: 1px dashed var(--st-line);
  padding-top: 12px;
  width: 100%;
}

.st-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.st-card-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--st-coral);
}

/* DUAL CALIBER COMPARISON (10MM VS 8MM) */
.st-caliber-section {
  background: var(--st-card);
  border-radius: 20px;
  border: 1px solid var(--st-line);
  padding: 45px 35px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.st-caliber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.st-caliber-card {
  border-radius: 16px;
  padding: 30px 25px;
  background: #F8FAFC;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.st-caliber-card.primary {
  background: rgba(14, 165, 233, 0.04);
  border-color: rgba(14, 165, 233, 0.3);
}

.st-caliber-card.secondary {
  background: rgba(255, 94, 98, 0.04);
  border-color: rgba(255, 94, 98, 0.3);
}

.st-caliber-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.st-caliber-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.st-caliber-card.primary .st-caliber-badge {
  background: var(--st-teal);
  color: #FFFFFF;
}

.st-caliber-card.secondary .st-caliber-badge {
  background: var(--st-coral);
  color: #FFFFFF;
}

.st-caliber-card h3 {
  font-family: var(--st-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--st-dark);
  margin-bottom: 10px;
}

.st-caliber-card p {
  font-size: 14px;
  color: var(--st-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.st-compat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.st-compat-item {
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--st-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--st-slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.st-compat-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--st-teal);
  stroke-width: 2.5;
  fill: none;
}

/* SPECIFICATION TABLE SECTION */
.st-specs-section {
  background: var(--st-card);
  border-radius: 20px;
  border: 1px solid var(--st-line);
  padding: 45px 35px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.st-specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--st-line);
  margin-top: 25px;
}

.st-specs-table th {
  background: #F1F5F9;
  color: var(--st-slate);
  font-family: var(--st-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--st-line);
}

.st-specs-table td {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--st-dark);
  border-bottom: 1px solid var(--st-line);
  background: #FFFFFF;
}

.st-specs-table tr:last-child td {
  border-bottom: none;
}

.st-specs-table tr:nth-child(even) td {
  background: #F8FAFC;
}

.st-specs-prop {
  font-weight: 700;
  color: var(--st-slate);
  width: 30%;
}

/* 4-STEP CUSTOMIZATION WORKFLOW */
.st-process-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border-radius: 22px;
  padding: 50px 35px;
  margin-bottom: 60px;
  box-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.4);
}

.st-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.st-process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.st-process-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

.st-step-num {
  font-family: var(--st-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--st-coral);
  margin-bottom: 12px;
}

.st-step-title {
  font-family: var(--st-head);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.st-step-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
}

/* NATIVE ACCORDION FAQ SECTION (TERMINAL SECTION) */
.st-faq-section {
  background: var(--st-card);
  border-radius: 20px;
  border: 1px solid var(--st-line);
  padding: 45px 35px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.st-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.st-faq-item {
  border: 1px solid var(--st-line);
  border-radius: 14px;
  background: #FFFFFF;
  overflow: hidden;
  transition: all 0.25s ease;
}

.st-faq-item[open] {
  border-color: var(--st-teal-light);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}

.st-faq-question {
  padding: 18px 22px;
  font-family: var(--st-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--st-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.st-faq-question::-webkit-details-marker {
  display: none;
}

.st-faq-arrow {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--st-teal-bg);
  color: var(--st-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.st-faq-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.st-faq-item[open] .st-faq-arrow {
  transform: rotate(180deg);
  background: var(--st-coral-bg);
  color: var(--st-coral);
}

.st-faq-answer {
  padding: 0 22px 20px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--st-muted);
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .st-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .st-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .st-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #st-wrap {
    padding: 6px;
  }
  .st-hero {
    padding: 38px 20px;
  }
  .st-hero h1 {
    font-size: 26px;
  }
  .st-carousel-slide {
    grid-template-columns: 1fr;
  }
  .st-slide-content {
    padding: 28px 20px;
  }
  .st-caliber-grid {
    grid-template-columns: 1fr;
  }
  .st-features-grid {
    grid-template-columns: 1fr;
  }
  .st-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .st-process-grid {
    grid-template-columns: 1fr;
  }
  .st-specs-section,
  .st-caliber-section,
  .st-faq-section {
    padding: 28px 18px;
  }
}
