/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

body {
  
  background: #f4f5f9;
  color: #1a1a1a;
}

.header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #fff;
}

.breadcrumb-bar {
    width: 100%;
    background: #f3f3f3;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-container a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-container .current {
    color: #222;
    font-weight: 500;
}

/* HERO */
.hero {
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #f7f8fc, #eef1f8);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.hero-left {
  flex: 1;
  max-width: 100%;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #6b7280;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 12px;
}

/* HEADING */
.hero-left h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* TEXT */
.description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.highlight {
  font-size: 15px;
  color: #6c63ff;
  font-weight: 500;
  margin-bottom: 15px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(90deg, #6c63ff, #ff7a18);
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #6c63ff;
  color: #6c63ff;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #6c63ff;
  color: #fff;
}

/* RIGHT IMAGE */
.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================
AI REALITY SECTION
============================ */
.ai-reality {
  padding: 50px 8% 60px;
  background: #f4f5f9;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background accent */
.ai-reality::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ar-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.ar-header {
  text-align: center;
  margin-bottom: 30px;
}

.ar-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e04040;
  background: rgba(224, 64, 64, 0.09);
  border: 1px solid rgba(224, 64, 64, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.ar-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ar-title em {
  font-style: normal;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ar-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* STATS BAR */
.ar-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.ar-stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.ar-stat-num {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  transition: none;
}

.ar-stat-unit {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #6c63ff;
}

.ar-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}

.ar-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* CARDS */
.ar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.ar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.ar-card::after {
  content: attr(data-index);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(108, 99, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(108, 99, 255, 0.1), 0 4px 12px rgba(0,0,0,0.05);
}

.ar-card-icon {
  width: 40px;
  height: 40px;
  color: #6c63ff;
  flex-shrink: 0;
}

.ar-card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}

.ar-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.ar-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(108, 99, 255, 0.08);
  color: #6c63ff;
  align-self: flex-start;
  margin-top: auto;
}

.ar-card[data-index="2"] .ar-card-tag {
  background: rgba(224, 64, 64, 0.08);
  color: #e04040;
}

.ar-card[data-index="3"] .ar-card-tag {
  background: rgba(255, 122, 24, 0.1);
  color: #d95f00;
}

/* INSIGHT BOX */
.ar-insight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(108, 99, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.ar-insight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(255,122,24,0.08) 100%);
  pointer-events: none;
}

.ar-insight-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ar-insight-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  position: relative;
}

.ar-insight-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* EXPERT LINE */
.ar-expert {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 26px;
  border: 1px solid rgba(0,0,0,0.07);
}

.ar-expert-avatar-group {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.ar-expert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ar-expert-dot:nth-child(1) { background: #6c63ff; }
.ar-expert-dot:nth-child(2) { background: #ff7a18; }
.ar-expert-dot:nth-child(3) { background: #00b894; }

.ar-expert p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.ar-expert p strong {
  color: #1a1a2e;
}

/* SCROLL REVEAL */
@supports (animation-timeline: scroll()) {
  .ar-header,
  .ar-stats,
  .ar-card,
  .ar-insight,
  .ar-expert {
    opacity: 0;
    animation: ar-fade-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .ar-card:nth-child(2) { animation-delay: 80ms; }
  .ar-card:nth-child(3) { animation-delay: 160ms; }
}

@keyframes ar-fade-in {
  to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ar-cards {
    grid-template-columns: 1fr;
  }

  .ar-stats {
    padding: 24px 24px;
  }

  .ar-stat-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .ai-reality {
    padding: 50px 5%;
  }

  .ar-stats {
    flex-direction: column;
    gap: 16px;
  }

  .ar-stat-divider {
    display: none;
  }

  .ar-insight {
    flex-direction: column;
    gap: 10px;
  }

  .ar-expert {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* MATCHED THEME SECTION */
.theme-match-section {
  padding: 50px 8% 60px;
  background: #f4f5f9;
  position: relative;
}

.gat-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gat-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 34px;
}

.gat-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.gat-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.gat-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gat-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.gat-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: stretch;
}

.gat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gat-card-large {
  padding: 28px 24px;
}

.gat-card-top {
  margin-bottom: 14px;
}

.gat-card-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  background: rgba(108, 99, 255, 0.08);
  color: #6c63ff;
}

.gat-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin-bottom: 12px;
}

.gat-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.gat-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.gat-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}

.gat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6c63ff;
}

.gat-note {
  margin-top: auto;
  background: #f7f8fc;
  border-left: 3px solid #6c63ff;
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.gat-note strong {
  color: #1a1a2e;
}

.gat-highlight {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 24px;
  border: 1px solid rgba(108, 99, 255, 0.22);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.10);
}

.gat-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.gat-highlight strong {
  color: #fff;
}

.gat-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.gat-cta-content h3 {
  font-size: 24px;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 8px;
}

.gat-cta-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  max-width: 700px;
}

.gat-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 12px;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 24px rgba(108, 99, 255, 0.20);
}

.gat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(108, 99, 255, 0.24);
}

@media (max-width: 991px) {
  .gat-grid {
    grid-template-columns: 1fr;
  }

  .gat-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .theme-match-section {
    padding: 35px 5% 60px;
  }

  .gat-card,
  .gat-card-large,
  .gat-cta-box {
    padding: 22px 18px;
  }

  .gat-cta-content h3 {
    font-size: 20px;
  }
}

/* SERVICES SECTION */
.services-editorial {
  padding: 50px 8% 60px;
  background: #f4f5f9;
}

.services-editorial-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TOP */
.services-editorial-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 28px;
}

/* BADGE */
.services-editorial-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(108, 99, 255, 0.08);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* HEADING */
.services-editorial-intro h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1a1a2e;
}

.services-editorial-intro h2 span {
  color: #6c63ff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .services-editorial-intro h2 span {
    background: linear-gradient(135deg, #6c63ff, #ff7a18);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* TEXT */
.services-editorial-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* RIGHT CARDS */
.services-editorial-summary {
  display: grid;
  gap: 14px;
}

.summary-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.summary-card:hover {
  transform: translateY(-3px);
}

.summary-card strong {
  font-size: 14px;
  color: #1a1a2e;
}

.summary-card span {
  font-size: 13px;
  color: #666;
}

/* DARK STRIP */
.services-editorial-strip {
  background: linear-gradient(135deg, #1a1a2e, #2d2b55);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.strip-label {
  color: #6c63ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.services-editorial-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* TABS */
.services-tabs-heading {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a2e;
  font-weight: 600;
}

/* WRAPPER */
.services-tabs-wrapper {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* LEFT MENU */
.services-tabs-menu {
  width: 240px;
  background: #f7f8fc;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.services-tabs-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-tabs-menu li {
  padding: 14px 18px;
  font-size: 13px;
  cursor: pointer;
  color: #444;
  transition: 0.3s;
}

/* ACTIVE TAB */
.services-tabs-menu li.active {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  font-weight: 600;
}

/* RIGHT CONTENT */
.services-tabs-content {
  flex: 1;
  padding: 26px;
}

.services-tabs-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.services-tabs-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* LIST */
.services-list {
  display: flex;
  gap: 40px;
}

.services-list ul {
  padding-left: 18px;
}

.services-list li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #333;
}

/* TAB VISIBILITY */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-editorial-top {
    grid-template-columns: 1fr;
  }

  .services-tabs-wrapper {
    flex-direction: column;
  }

  .services-tabs-menu {
    width: 100%;
  }

  .services-list {
    flex-direction: column;
  }
}

/* CTA SECTION */
.services-editorial-cta {
  margin-top: 30px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

/* TEXT */
.services-editorial-cta-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.services-editorial-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
}

/* BUTTON */
.services-editorial-btn {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.25);
}

.services-editorial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(108, 99, 255, 0.3);
}

@media (max-width: 900px) {
  .services-editorial-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-editorial-btn {
    width: 100%;
    text-align: center;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ACTIVE */
.popup-overlay.active {
  display: flex;
}

/* CONTAINER */
.popup-container {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  position: relative;
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

/* LEFT */
.popup-left {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a2e, #2d2b55);
  color: #fff;
}

.popup-left h2 {
  margin: 15px 0;
  font-size: 26px;
}

.popup-left p {
  font-size: 14px;
  opacity: 0.9;
}

.popup-left ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.popup-left li {
  font-size: 14px;
  margin-bottom: 10px;
}

.popup-trust {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* RIGHT */
.popup-right {
  flex: 1;
  padding: 40px;
}

.popup-right h3 {
  margin-bottom: 20px;
}

/* FORM */
.popup-right input,
.popup-right select,
.popup-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.popup-right textarea {
  min-height: 120px;
  resize: vertical;
}

.popup-right button {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(90deg, #6c63ff, #ff7a18);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
  }

  .popup-right {
    order: 1;
    padding: 20px;
  }

  .popup-left {
    order: 2;
    padding: 20px;
  }
}

/* =========================
HOW IT WORKS - LIGHT PREMIUM
========================= */
.how-it-works-premium {
  padding: 60px 8% 70px;
  background: #f4f5f9;
  position: relative;
  overflow: hidden;
}

.how-it-works-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works-premium::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hiw-container {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hiw-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.hiw-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hiw-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hiw-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 auto;
}

.hiw-process-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.25), transparent);
  margin: 0 auto 34px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hiw-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 26px 22px 24px;
  box-shadow: 0 14px 35px rgba(31, 41, 55, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.hiw-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #6c63ff, #ff7a18);
}

.hiw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(31, 41, 55, 0.10);
  border-color: rgba(108, 99, 255, 0.12);
}

.hiw-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  margin-bottom: 18px;
}

.hiw-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.10), rgba(255, 122, 24, 0.10));
  border: 1px solid rgba(108, 99, 255, 0.10);
  margin-bottom: 18px;
}

.hiw-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hiw-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 16px;
}

.hiw-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hiw-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: #333;
}

.hiw-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
}

.hiw-highlight {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border: 1px solid rgba(108, 99, 255, 0.16);
  box-shadow: 0 14px 30px rgba(26, 26, 46, 0.10);
}

.hiw-highlight-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.hiw-highlight-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.hiw-highlight-text strong {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-it-works-premium {
    padding: 50px 5% 60px;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .hiw-card {
    padding: 22px 18px;
  }

  .hiw-highlight {
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
  }
}

/* =========================
BEFORE VS AFTER - PREMIUM
========================= */
.before-after-premium {
  padding: 60px 8% 70px;
  background: #f7f8fc;
  position: relative;
  overflow: hidden;
}

.before-after-premium::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.before-after-premium::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.07) 0%, transparent 72%);
  pointer-events: none;
}

.ba-container {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ba-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.ba-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ba-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ba-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ba-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 auto;
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 24px;
  align-items: stretch;
}

.ba-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
}

.ba-before::before,
.ba-after::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}

.ba-before::before {
  background: linear-gradient(90deg, #d94b4b, #ff8c66);
}

.ba-after::before {
  background: linear-gradient(90deg, #6c63ff, #ff7a18);
}

.ba-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ba-before .ba-label {
  color: #b73c3c;
  background: rgba(217, 75, 75, 0.10);
  border: 1px solid rgba(217, 75, 75, 0.16);
}

.ba-after .ba-label {
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.10);
  border: 1px solid rgba(108, 99, 255, 0.16);
}

.ba-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ba-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 18px;
}

.ba-points {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.ba-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.ba-points.negative li {
  color: #4b5563;
}

.ba-points.positive li {
  color: #2f3a48;
}

.ba-points.negative li::before,
.ba-points.positive li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  font-weight: 800;
}

.ba-points.negative li::before {
  content: "✕";
  color: #d94b4b;
}

.ba-points.positive li::before {
  content: "✓";
  color: #20a464;
}

.ba-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ba-keywords span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.ba-before .ba-keywords span {
  background: #fff4f4;
  color: #c04848;
  border: 1px solid rgba(192, 72, 72, 0.14);
}

.ba-after .ba-keywords span {
  background: rgba(108, 99, 255, 0.08);
  color: #6c63ff;
  border: 1px solid rgba(108, 99, 255, 0.12);
}

.ba-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ba-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(108, 99, 255, 0.22);
}

.ba-middle-text {
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  max-width: 130px;
}

.ba-middle-text strong {
  color: #1a1a2e;
}

.ba-highlight {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border: 1px solid rgba(108, 99, 255, 0.16);
  box-shadow: 0 14px 30px rgba(26, 26, 46, 0.10);
}

.ba-highlight-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.ba-highlight-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.ba-highlight-text strong {
  color: #ffffff;
}

@media (max-width: 991px) {
  .ba-comparison {
    grid-template-columns: 1fr;
  }

  .ba-middle {
    flex-direction: row;
    justify-content: center;
    margin: -4px 0;
  }

  .ba-middle-text {
    max-width: 100%;
    text-align: left;
  }

  .ba-arrow-circle {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .before-after-premium {
    padding: 50px 5% 60px;
  }

  .ba-card {
    padding: 22px 18px;
  }

  .ba-card h3 {
    font-size: 21px;
  }

  .ba-highlight {
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
  }

  .ba-middle {
    flex-direction: column;
  }

  .ba-middle-text {
    text-align: center;
  }
}

/* =========================
7. BENEFITS SECTION
========================= */
.benefits-premium {
  padding: 60px 8% 70px;
  background: #f4f5f9;
  position: relative;
  overflow: hidden;
}

.benefits-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.benefits-container {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.benefits-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.benefits-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.benefits-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #6c63ff, #ff7a18);
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.10), rgba(255, 122, 24, 0.10));
  border: 1px solid rgba(108, 99, 255, 0.10);
}

.benefit-card h3 {
  font-size: 22px;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}

.benefits-strip {
  margin-top: 28px;
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border: 1px solid rgba(108, 99, 255, 0.18);
}

.benefits-strip-icon {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.benefits-strip p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
8. WHY CHOOSE US
========================= */
.why-choose-premium {
  padding: 60px 8% 70px;
  background: #f7f8fc;
}

.wc-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.wc-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wc-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.wc-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wc-description {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
  max-width: 560px;
}

.wc-visual-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(108, 99, 255, 0.18);
  box-shadow: 0 18px 36px rgba(26, 26, 46, 0.10);
}

.wc-visual-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.wc-visual-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.wc-visual-card p {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.wc-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.wc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.wc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.10), rgba(255, 122, 24, 0.10));
  border: 1px solid rgba(108, 99, 255, 0.10);
  flex-shrink: 0;
}

.wc-card-content h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}

.wc-card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* =========================
9. CTA SECTION
========================= */
.cta-leads-premium {
  padding: 60px 8% 70px;
  background: #f4f5f9;
}

.cta-leads-container {
  max-width: 1150px;
  margin: 0 auto;
}

.cta-leads-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(108, 99, 255, 0.18);
  box-shadow: 0 18px 40px rgba(26, 26, 46, 0.12);
}

.cta-leads-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d6d8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-leads-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 14px;
}

.cta-leads-left p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  margin-bottom: 20px;
}

.cta-leads-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta-leads-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.6;
}

.cta-leads-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
}

.cta-leads-right {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.cta-leads-right h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 18px;
}

.cta-leads-right input,
.cta-leads-right textarea {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.cta-leads-right input::placeholder,
.cta-leads-right textarea::placeholder {
  color: rgba(255,255,255,0.58);
}

.cta-leads-right textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-leads-right button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(108, 99, 255, 0.22);
}

.cta-book-link {
  display: inline-block;
  margin-top: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
}

.cta-book-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =========================
10. FAQ SECTION
========================= */
.faq-premium {
  padding: 60px 8% 80px;
  background: #f7f8fc;
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.faq-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.14);
  color: #6c63ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.faq-title span {
  background: linear-gradient(135deg, #6c63ff, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: #ffffff;
  text-align: left;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  color: #6c63ff;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wc-container,
  .cta-leads-box {
    grid-template-columns: 1fr;
  }

  .wc-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-premium,
  .why-choose-premium,
  .cta-leads-premium,
  .faq-premium {
    padding: 50px 5% 60px;
  }

  .benefits-grid,
  .wc-right {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .wc-card,
  .cta-leads-right {
    padding: 20px 18px;
  }

  .cta-leads-box {
    padding: 24px 18px;
  }

  .faq-question {
    padding: 18px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .benefits-strip,
  .wc-visual-card {
    padding: 20px 18px;
  }
}

/* 🔥 FINAL MOBILE HERO FIX */
@media (max-width: 768px) {

  .hero {
    padding: 70px 20px 50px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .description {
    font-size: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-right {
    margin-top: 25px;
  }

  .hero-right img {
    max-width: 100%;
    height: auto;
  }
}