.velta-idea-widget {
  --velta-idea-bg: #0e0f13;
  --velta-idea-card: #16171d;
  --velta-idea-card-hover: #1c1d25;
  --velta-idea-border: #2a2b35;
  --velta-idea-fg: #e8e6e1;
  --velta-idea-muted: #7a7880;
  --velta-idea-accent: #e8572a;
  --velta-idea-accent-glow: rgba(232, 87, 42, 0.25);
  --velta-idea-success: #34d399;
  --velta-idea-warning: #fbbf24;
  --velta-idea-info: #60a5fa;

  background: var(--velta-idea-card);
  border: 1px solid var(--velta-idea-border);
  border-radius: 16px;
  color: var(--velta-idea-fg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.velta-idea-widget:hover {
  border-color: color-mix(in srgb, var(--velta-idea-accent) 40%, transparent);
  box-shadow: 0 0 40px var(--velta-idea-accent-glow);
}

.velta-idea-widget__label {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--velta-idea-muted);
  background: var(--velta-idea-bg);
  padding: 3px 8px;
  border-radius: 6px;
}

.velta-idea-widget p,
.velta-idea-widget h3 {
  margin: 0;
}

.velta-idea-widget a {
  color: inherit;
}

.velta-idea-profile {
  text-align: center;
}

.velta-idea-profile__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--velta-idea-accent);
  margin: 0 0 14px;
  transition: transform 0.3s;
}

.velta-idea-profile__avatar:hover {
  transform: scale(1.08);
}

.velta-idea-profile__name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.velta-idea-profile__role {
  color: var(--velta-idea-accent);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

.velta-idea-profile__bio {
  color: var(--velta-idea-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 12px 0 16px;
}

.velta-idea-profile__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.velta-idea-profile__stats span {
  font-size: 13px;
}

.velta-idea-profile__stats strong {
  color: var(--velta-idea-fg);
  font-weight: 700;
}

.velta-idea-profile__stats small {
  color: var(--velta-idea-muted);
  margin-left: 3px;
}

.velta-idea-profile__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.velta-idea-profile__social {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--velta-idea-bg);
  border: 1px solid var(--velta-idea-border);
  display: inline-grid;
  place-items: center;
  color: var(--velta-idea-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.velta-idea-profile__social:hover {
  color: var(--velta-idea-accent);
  border-color: var(--velta-idea-accent);
  transform: translateY(-2px);
}

.velta-idea-contact__group {
  margin-bottom: 12px;
}

.velta-idea-contact__group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--velta-idea-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.velta-idea-contact__group input,
.velta-idea-contact__group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--velta-idea-border);
  background: var(--velta-idea-bg);
  color: var(--velta-idea-fg);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.velta-idea-contact__group input:focus,
.velta-idea-contact__group textarea:focus {
  border-color: var(--velta-idea-accent);
}

.velta-idea-contact__group textarea {
  min-height: 80px;
  resize: vertical;
}

.velta-idea-contact__button {
  width: 100%;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: var(--velta-idea-accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.velta-idea-contact__button:hover {
  opacity: 0.9;
}

.velta-idea-contact__button:active {
  transform: scale(0.97);
}

.velta-idea-contact__toast {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

.velta-idea-contact__toast.is-visible {
  display: block;
}

.velta-idea-contact__toast.is-success {
  background: rgba(52, 211, 153, 0.12);
  color: var(--velta-idea-success);
}

.velta-idea-contact__toast.is-error {
  background: rgba(232, 87, 42, 0.12);
  color: var(--velta-idea-accent);
}

.velta-idea-recent-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.velta-idea-recent-posts__item {
  margin: 0;
}

.velta-idea-recent-posts__link {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: var(--velta-idea-bg);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s;
}

.velta-idea-recent-posts__link:hover {
  border-color: var(--velta-idea-border);
  background: var(--velta-idea-card-hover);
}

.velta-idea-recent-posts__thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.velta-idea-recent-posts__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.velta-idea-recent-posts__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.velta-idea-recent-posts__meta {
  font-size: 11px;
  color: var(--velta-idea-muted);
  margin-top: 3px;
}

.velta-idea-countdown__header {
  text-align: center;
  margin-bottom: 18px;
}

.velta-idea-countdown__header h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.velta-idea-countdown__header p {
  color: var(--velta-idea-muted);
  font-size: 13px;
  margin-top: 2px;
}

.velta-idea-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.velta-idea-countdown__unit {
  background: var(--velta-idea-bg);
  border: 1px solid var(--velta-idea-border);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  transition: border-color 0.3s;
}

.velta-idea-countdown__unit:hover {
  border-color: var(--velta-idea-accent);
}

.velta-idea-countdown__num {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--velta-idea-fg);
  line-height: 1;
}

.velta-idea-countdown__label {
  display: block;
  font-size: 10px;
  color: var(--velta-idea-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.velta-idea-pricing {
  text-align: center;
}

.velta-idea-pricing__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--velta-idea-accent-glow);
  color: var(--velta-idea-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.velta-idea-pricing__name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.velta-idea-pricing__price {
  margin: 10px 0 4px;
}

.velta-idea-pricing__price span {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 44px;
  font-weight: 900;
}

.velta-idea-pricing__price small {
  font-size: 14px;
  color: var(--velta-idea-muted);
}

.velta-idea-pricing__desc {
  color: var(--velta-idea-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.velta-idea-pricing__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}

.velta-idea-pricing__features li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--velta-idea-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.velta-idea-pricing__feature-icon {
  width: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.velta-idea-pricing__features .is-enabled .velta-idea-pricing__feature-icon {
  color: var(--velta-idea-success);
}

.velta-idea-pricing__features .is-disabled {
  color: var(--velta-idea-muted);
}

.velta-idea-pricing__features .is-disabled .velta-idea-pricing__feature-icon {
  color: var(--velta-idea-muted);
}

.velta-idea-pricing__button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--velta-idea-accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.3s;
  box-sizing: border-box;
}

.velta-idea-pricing__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--velta-idea-accent-glow);
}

.velta-idea-pricing__button.is-static {
  cursor: default;
}

.velta-idea-testimonial {
  position: relative;
  min-height: 216px;
}

.velta-idea-testimonial__slide {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.velta-idea-testimonial__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.velta-idea-testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--velta-idea-fg);
  margin-bottom: 16px;
  font-style: italic;
}

.velta-idea-testimonial__quote::before {
  content: "\201C";
  font-size: 32px;
  color: var(--velta-idea-accent);
  font-style: normal;
  margin-right: 4px;
  line-height: 0;
  vertical-align: -8px;
}

.velta-idea-testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.velta-idea-testimonial__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.velta-idea-testimonial__name {
  font-size: 13px;
  font-weight: 700;
}

.velta-idea-testimonial__role {
  font-size: 11px;
  color: var(--velta-idea-muted);
}

.velta-idea-testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.velta-idea-testimonial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--velta-idea-border);
  border: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.velta-idea-testimonial__dot.is-active {
  background: var(--velta-idea-accent);
  transform: scale(1.3);
}

.velta-idea-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.velta-idea-stats__item {
  background: var(--velta-idea-bg);
  border: 1px solid var(--velta-idea-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.velta-idea-stats__item:hover {
  border-color: var(--velta-idea-accent);
  transform: translateY(-2px);
}

.velta-idea-stats__icon {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--velta-idea-accent);
}

.velta-idea-stats__icon .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
}

.velta-idea-stats__number {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.velta-idea-stats__label {
  font-size: 11px;
  color: var(--velta-idea-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.velta-idea-faq__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.velta-idea-faq__item {
  border: 1px solid var(--velta-idea-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.velta-idea-faq__item.is-open {
  border-color: var(--velta-idea-accent);
}

.velta-idea-faq__question {
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: 0;
  color: var(--velta-idea-fg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.velta-idea-faq__question:hover {
  background: var(--velta-idea-card-hover);
}

.velta-idea-faq__question span {
  color: var(--velta-idea-muted);
  transition: transform 0.3s, color 0.3s;
}

.velta-idea-faq__item.is-open .velta-idea-faq__question span {
  transform: rotate(180deg);
  color: var(--velta-idea-accent);
}

.velta-idea-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 16px;
}

.velta-idea-faq__item.is-open .velta-idea-faq__answer {
  max-height: 220px;
  padding: 0 16px 14px;
}

.velta-idea-faq__answer p {
  font-size: 13px;
  color: var(--velta-idea-muted);
  line-height: 1.6;
}

.velta-idea-social-follow {
  text-align: center;
}

.velta-idea-social-follow__title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.velta-idea-social-follow__subtitle {
  font-size: 12px;
  color: var(--velta-idea-muted);
  margin-bottom: 16px;
}

.velta-idea-social-follow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.velta-idea-social-follow__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--velta-idea-border);
  background: var(--velta-idea-bg);
  color: var(--velta-idea-fg);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.velta-idea-social-follow__btn:hover {
  transform: translateY(-2px);
}

.velta-idea-social-follow__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid currentColor;
}

.velta-idea-social-follow__btn.is-twitter:hover {
  border-color: #1da1f2;
  background: rgba(29, 161, 242, 0.08);
  color: #1da1f2;
}

.velta-idea-social-follow__btn.is-github:hover {
  border-color: #e8e6e1;
  background: rgba(232, 230, 225, 0.06);
}

.velta-idea-social-follow__btn.is-youtube:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
}

.velta-idea-social-follow__btn.is-linkedin:hover {
  border-color: #0a66c2;
  background: rgba(10, 102, 194, 0.08);
  color: #0a66c2;
}

.velta-idea-social-follow__btn.is-dribbble:hover {
  border-color: #ea4c89;
  background: rgba(234, 76, 137, 0.08);
  color: #ea4c89;
}

.velta-idea-social-follow__btn.is-medium:hover {
  border-color: #e8e6e1;
  background: rgba(232, 230, 225, 0.06);
}

.velta-idea-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.velta-idea-progress__header h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.velta-idea-progress__pct {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--velta-idea-accent);
}

.velta-idea-progress__bar-bg {
  width: 100%;
  height: 10px;
  background: var(--velta-idea-bg);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--velta-idea-border);
}

.velta-idea-progress__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--velta-idea-accent), #f59e0b);
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.velta-idea-progress__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.velta-idea-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--velta-idea-muted);
  transition: color 0.3s;
}

.velta-idea-progress__step.is-done {
  color: var(--velta-idea-fg);
}

.velta-idea-progress__step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--velta-idea-border);
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.velta-idea-progress__step.is-done .velta-idea-progress__step-icon {
  background: var(--velta-idea-success);
  border-color: var(--velta-idea-success);
  color: #000;
}

@media (max-width: 620px) {
  .velta-idea-countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .velta-idea-social-follow__grid {
    grid-template-columns: 1fr;
  }
}
