/* ==========================================================================
   PAIDFOLLOWERS - PRODUCTION E-COMMERCE STYLESHEET
   Clean, professional, high-converting design for PaidFollowers.
   ========================================================================== */

:root {
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --ig-magenta: #e1306c;
  --ig-purple: #833ab4;
  --ig-gradient: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  
  --color-green: #059669;
  --bg-green-light: #ecfdf5;
  --whatsapp-green: #25d366;
  
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.2s ease-in-out;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.gradient-text {
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.pt-2 { padding-top: 0.5rem; }
.d-none { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--ig-magenta);
  color: #ffffff;
}

.btn-primary:hover {
  background: #c1235b;
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--text-dark);
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--ig-purple);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.45rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.lang-select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.lang-option {
  color: #000000;
}

.support-contact {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* HEADER & NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--ig-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
}

.brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ig-magenta);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.main-nav a:hover {
  color: var(--ig-magenta);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: var(--bg-white);
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  border-radius: var(--radius-sm);
  color: var(--ig-magenta);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-cta-group {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.trust-metrics {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.metric-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.metric-stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: var(--border-light);
}

/* HERO PREVIEW STORY MOCKUP */
.hero-preview {
  display: flex;
  justify-content: center;
}

.instagram-story-card {
  width: 100%;
  max-width: 320px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.story-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.avatar-ring {
  padding: 2px;
  background: var(--ig-gradient);
  border-radius: 50%;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
}

.username {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.verified-badge {
  color: #0284c7;
  font-size: 0.75rem;
}

.time-ago {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.story-content {
  background: var(--bg-subtle);
  border-radius: 12px;
  padding: 1.1rem 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

.story-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ig-magenta);
  margin-bottom: 0.4rem;
}

.poll-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.interactive-poll-widget {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.poll-option {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.poll-option.selected-target {
  border-color: var(--ig-magenta);
  background: #fdf2f8;
}

.poll-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--ig-gradient);
  opacity: 0.25;
  transition: width 0.4s ease;
}

.poll-bar-a { width: 82%; }
.poll-bar-b { width: 18%; }

.poll-option-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
}

.option-check {
  color: var(--ig-magenta);
}

.poll-target-status {
  font-size: 0.725rem;
  color: var(--text-muted);
  background: var(--bg-white);
  padding: 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.live-counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ig-magenta);
  background: #fdf2f8;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PACKAGES SECTION */
.packages-section {
  padding: 4.5rem 0;
  background: var(--bg-body);
}

.service-category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.service-tab {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-medium);
  background: var(--bg-white);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-tab:hover {
  border-color: var(--ig-magenta);
  color: var(--ig-magenta);
}

.service-tab.active {
  background: linear-gradient(135deg, var(--ig-purple), var(--ig-magenta));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.25);
}

.service-grid {
  display: none !important;
}

.service-grid.active {
  display: grid !important;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--ig-magenta);
  box-shadow: var(--shadow-md);
}

.popular-card {
  border-color: var(--ig-magenta);
  border-width: 2px;
}

.best-value-card {
  border-color: var(--ig-purple);
  border-width: 2px;
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #fff;
  font-size: 0.675rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.popular-badge {
  background: var(--ig-magenta);
}

.best-badge {
  background: var(--ig-purple);
}

.package-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.vote-count {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.vote-count span {
  font-size: 0.95rem;
  color: var(--ig-magenta);
}

.package-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.price-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.currency { font-size: 1rem; }
.cents { font-size: 1rem; }

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.package-features i {
  color: var(--color-green);
}

/* CALCULATOR SECTION */
.calculator-section {
  padding: 4rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calc-box {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.calc-service-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.calc-type-btn {
  flex: 1 1 calc(25% - 0.5rem);
  min-width: 110px;
  padding: 0.6rem 0.75rem;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.calc-type-btn.active {
  background: var(--ig-gradient);
  color: #ffffff;
  border-color: transparent;
}

.slider-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider-output {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ig-magenta);
  line-height: 1;
  margin-bottom: 1rem;
}

.slider-output small {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

#calcSlider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-medium);
  outline: none;
  accent-color: var(--ig-magenta);
  cursor: pointer;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.custom-calc-input-wrapper {
  margin-top: 1.25rem;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  text-align: left;
}

.custom-input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.custom-input-label i {
  color: var(--ig-magenta);
}

.custom-input-group {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.85rem;
  transition: var(--transition);
}

.custom-input-group:focus-within {
  border-color: var(--ig-magenta);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.15);
}

.custom-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  outline: none;
  width: 100%;
}

.custom-input-group input::-webkit-outer-spin-button,
.custom-input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-input-group input[type=number] {
  -moz-appearance: textfield;
}

.custom-input-unit {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ig-magenta);
  letter-spacing: 0.5px;
}

.calc-summary {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.summary-item.main-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-item.main-price .value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ig-magenta);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 4.5rem 0;
  background: var(--bg-body);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #e2e8f0;
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fdf2f8;
  color: var(--ig-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* GUARANTEES */
.guarantee-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.guarantee-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guarantee-badge-big {
  flex: 0 0 200px;
  width: 200px;
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.04) 100%);
  border: 2px solid #a7f3d0;
  border-radius: 16px;
  padding: 2rem 1.25rem;
  color: var(--color-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.guarantee-badge-big i {
  font-size: 3.25rem;
  margin-bottom: 0.65rem;
  color: #059669;
}

.guarantee-badge-big span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #047857;
  text-transform: uppercase;
}

.guarantee-content {
  flex: 1;
  min-width: 0;
}

.guarantee-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.guarantee-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.g-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--bg-body);
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.g-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.g-item i {
  font-size: 1.35rem;
  color: var(--ig-magenta);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.g-item h4 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.g-item p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* REVIEWS */
.testimonials-section {
  padding: 4.5rem 0;
  background: var(--bg-body);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ig-magenta);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-user .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-user .handle {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.stars { color: #f59e0b; font-size: 0.8rem; }

.review-text {
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.review-footer .tag {
  font-size: 0.725rem;
  color: var(--color-green);
  font-weight: 700;
}

/* FAQ */
.faq-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 0.975rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  transition: transform 0.2s;
  color: var(--ig-magenta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1.1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-desc {
  font-size: 0.825rem;
  margin: 0.85rem 0 1.25rem;
}

.payment-methods {
  display: flex;
  gap: 0.85rem;
  font-size: 0.775rem;
  color: #cbd5e1;
  font-weight: 700;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.825rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #ffffff;
}

.status-online {
  font-size: 0.775rem;
  color: var(--whatsapp-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-online i { font-size: 0.5rem; }

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.s-badge {
  font-size: 0.775rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid #1e293b;
  font-size: 0.775rem;
}

/* CHECKOUT MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
}

.modal-overlay.open,
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin: auto;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: #cbd5e1;
}

.modal-header {
  padding: 1.1rem 1.25rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.modal-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot.active {
  background: var(--ig-magenta);
  color: #fff;
}

.step-line {
  width: 26px;
  height: 2px;
  background: var(--bg-subtle);
}

.step-line.active {
  background: var(--ig-magenta);
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

.order-summary-mini {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.modal-price-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ig-magenta);
}

/* FORMS */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--ig-magenta);
}

.form-help {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.option-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.radio-card {
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.radio-card.active {
  border-color: var(--ig-magenta);
  background: #fdf2f8;
}

.opt-title { font-weight: 800; font-size: 0.85rem; color: var(--text-dark); display: block; }

/* PAYMENT METHOD & CRYPTO SELECTION */
.payment-single-header {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.payment-single-header i {
  color: var(--ig-magenta);
  font-size: 1.15rem;
}

.pay-view { display: none; }
.pay-view.active { display: block; }

.pix-box { text-align: center; }

.pix-total { font-size: 1rem; color: var(--text-dark); margin-bottom: 0.85rem; }
.pix-total strong { color: var(--color-green); font-size: 1.25rem; }

.payment-method-selector-box {
  text-align: left;
  background: var(--bg-subtle);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  margin-bottom: 0.75rem;
}

.payment-selector-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.payment-selector-label i {
  color: var(--ig-purple);
}

.payment-selector-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  color: var(--text-dark);
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 0.85rem;
  border-radius: 12px;
  border: 2px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  margin-bottom: 0.85rem;
}

.qr-code-wrapper img {
  display: block;
  max-width: 175px;
  max-height: 175px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
}

.pay-address-info {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pix-code-container {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.pix-code-input {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--border-medium);
  color: var(--text-dark);
}

.pix-timer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* SCREENSHOT FILE UPLOAD DROPZONE & VALIDATION */
.payment-proof-fields {
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.proof-field-group {
  text-align: left;
  margin-bottom: 0.85rem;
}

.proof-field-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  display: block;
}

.icon-purple { color: var(--ig-purple); }
.icon-magenta { color: var(--ig-magenta); }

.proof-text-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  outline: none;
  background: #ffffff;
  transition: all 0.25s ease;
}

.proof-help-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.proof-error-msg {
  display: none;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.file-upload-dropzone {
  border: 2px dashed var(--border-medium);
  border-radius: 12px;
  padding: 1.15rem 1rem;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-upload-dropzone:hover {
  border-color: var(--ig-magenta);
  background: rgba(225, 48, 108, 0.03);
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.dropzone-icon {
  font-size: 1.85rem;
  color: var(--ig-magenta);
  margin-bottom: 0.2rem;
}

.dropzone-text {
  font-weight: 700;
  font-size: 0.825rem;
  color: var(--text-dark);
}

.dropzone-sub {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.dropzone-preview {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

#screenshotPreviewImg {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-medium);
  flex-shrink: 0;
}

.preview-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}

.file-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.btn-remove-file {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-remove-file:hover {
  text-decoration: underline;
}

.upload-manual-share-notice {
  display: none;
  margin-top: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.45;
  text-align: left;
  align-items: flex-start;
  gap: 0.6rem;
}

.upload-manual-share-notice i {
  font-size: 1.25rem;
  color: #25d366;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.proof-requirement-badge {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: 8px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #c2410c;
  text-align: center;
}

.btn-submit-payment {
  opacity: 0.7;
  cursor: not-allowed;
}

/* SUCCESS / RECEIPT BOX */
.success-box { text-align: center; padding: 0.85rem 0; }

.order-receipt-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.825rem;
}

.receipt-row:last-child { border-bottom: none; }
.receipt-row span { color: var(--text-muted); }
.receipt-row strong { color: var(--text-dark); word-break: break-all; }
.receipt-proof-ok { color: var(--color-green); }

.status-badge {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.spin {
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.btn-share-native {
  display: none;
  border-color: #25d366;
  color: #15803d;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.truncate-text {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* FLOATING SUPPORT BUTTONS */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-telegram {
  position: fixed;
  bottom: calc(2rem + 68px);
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #229ED9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.45);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.6);
  color: #ffffff;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 1.75rem; }
  .hero-features { justify-content: center; text-align: left; }
  .hero-cta-group { justify-content: center; }
  .trust-metrics { justify-content: center; }
  .guarantee-wrapper {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.75rem;
    text-align: center;
  }
  .guarantee-badge-big { width: 100%; max-width: 240px; }
  .g-item { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.1rem;
    border-bottom: 2px solid var(--ig-magenta);
    border-radius: 0 0 16px 16px;
    display: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }

  .main-nav.open,
  .main-nav.active { 
    display: flex !important; 
  }

  .mobile-toggle { 
    display: block; 
    font-size: 1.5rem;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
  }

  .hero-title { font-size: 1.85rem; line-height: 1.25; }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .service-category-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
  }

  .service-tab {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
    justify-content: center;
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .package-card {
    padding: 1.5rem 1.2rem;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .modal-card {
    width: 95%;
    max-width: 440px;
    padding: 0;
    max-height: 90vh;
    margin: auto;
    border-radius: 16px;
  }

  .modal-header {
    padding: 0.9rem 1rem 0.6rem;
  }

  .modal-body {
    padding: 0.85rem 1rem 1rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .option-selector-grid {
    grid-template-columns: 1fr;
  }

  .pix-code-container {
    flex-direction: column;
  }

  .pix-code-container .btn {
    width: 100%;
  }

  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .floating-telegram {
    bottom: calc(1.25rem + 58px);
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-bar-content {
    font-size: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }

  .trust-metrics {
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
  }

  .metric-divider {
    display: none;
  }

  .service-tab {
    flex: 1 1 100%;
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .receipt-row {
    flex-direction: column;
    gap: 0.2rem;
  }
}
