.elementor-7 .elementor-element.elementor-element-8edb9e4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-8edb9e4:not(.elementor-motion-effects-element-type-background), .elementor-7 .elementor-element.elementor-element-8edb9e4 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#00000000;}/* Start custom CSS for html, class: .elementor-element-59f77ca */ /* ======================================================
   STYLE 2 — MOBILE FIRST / HIGH CONVERSION
====================================================== */

/* ---------------- ROOT ---------------- */
:root {
  --primary: #ff6b3d;
  --primary-strong: #ff4757;
  --primary-glow: rgba(255,107,61,.5);

  --bg-dark: #090909;
  --bg-card: rgba(255,255,255,.045);
  --glass-border: rgba(255,255,255,.08);

  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --success: #10b981;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --font-main: 'Montserrat', sans-serif;
}

/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,107,61,.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,107,61,.06), transparent 40%),
    var(--bg-dark);
  color: var(--text-main);
  line-height: 1.55;
}

img, video {
  display: block;
  max-width: 100%;
}

/* ---------------- UTILS ---------------- */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 14px;
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}

/* ---------------- HEADER ---------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo img {
  height: 34px;
}

/* ---------------- PROMO ---------------- */
.nav-promo {
  margin: 1.2rem auto;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,107,61,.18);
  border: 1px solid rgba(255,107,61,.35);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  animation: pulse 2s infinite;
}

/* ---------------- GRID ---------------- */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

/* ---------------- PROFILE ---------------- */
.profile-cover {
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-wrapper {
  position: absolute;
  bottom: -38px;
  left: 16px;
  background: var(--bg-dark);
  padding: 4px;
  border-radius: 50%;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
}

.profile-meta {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.profile-identity h1 {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-username {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ---------------- STATS ---------------- */
.profile-stats {
  display: flex;
  gap: 8px;
}

.stat-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
}

.stat-value {
  font-weight: 700;
  font-size: .95rem;
}

.stat-label {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---------------- FEED ---------------- */
.content-feed h3 {
  font-size: 1rem;
  margin-bottom: .8rem;
}

.feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feed-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.feed-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.feed-card:hover .feed-media {
  transform: scale(1.08);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: .85rem;
  transition: var(--transition);
}

.feed-card:hover .lock-overlay {
  opacity: .18;
}

/* ---------------- COMMENTS ---------------- */
.comments-section {
  margin-top: 2.2rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}

.comments-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.comment {
  display: flex;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.comment-content {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--glass-border);
  padding: 10px 12px;
  border-radius: var(--radius-md);
}

.comment-content strong {
  font-size: .85rem;
}

.comment-content p {
  font-size: .85rem;
  margin: 4px 0;
}

.comment-time {
  font-size: .65rem;
  color: var(--text-muted);
}

/* ---------------- PRICING ---------------- */
.pricing-card {
  margin-top: 1.8rem;
}

.plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

.plan-item:hover {
  background: rgba(255,255,255,.06);
}

.plan-name {
  font-weight: 700;
}

.plan-price {
  font-weight: 800;
  color: var(--primary);
}

.cta-button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 18px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  animation: pulse 2s infinite;
}

/* ---------------- FAQ ---------------- */
.faq-section {
  margin-top: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 14px;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: .85rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--primary-glow); }
  70% { box-shadow: 0 0 0 14px rgba(255,107,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,61,0); }
}

/* ---------------- DESKTOP ENHANCE ---------------- */
@media (min-width: 900px) {

  .container {
    padding: 0 20px;
  }

  .profile-grid {
    grid-template-columns: 1fr 340px;
  }

  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-cover {
    height: 280px;
  }

  .profile-avatar {
    width: 130px;
    height: 130px;
  }
} /* End custom CSS */