/* ==========================================================================
   ORGANICO - PRECISE MOBILE HAMBURGER VISIBILITY FIX
   Doubled Mobile Logo Size (100% Increase to 88px) & Header Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-obsidian: #040711;
  --color-surface: #0a1020;
  --color-card-bg: rgba(10, 16, 32, 0.75);
  --color-card-hover: rgba(14, 22, 44, 0.9);
  
  --color-cyan: #009BDB;
  --color-blue: #022E7A;
  --color-purple: #7B2C88;
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(0, 155, 219, 0.3);
  
  --grad-hero-text: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #009BDB 75%, #7B2C88 100%);
  --grad-accent: linear-gradient(135deg, #009BDB 0%, #7B2C88 100%);
  
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.45);
  --shadow-header: 0 10px 25px rgba(0, 0, 0, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.3s ease;
}

/* Strict Layout Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-obsidian);
  color: var(--color-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

/* Header Architecture */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(4, 7, 17, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  box-shadow: var(--shadow-header);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.organico-logo-img {
  height: 90px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lang-switcher { position: relative; }

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--color-text-primary);
  padding: 0.45rem 0.8rem;
  min-height: 40px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #0a1020;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  list-style: none;
  min-width: 140px;
  box-shadow: var(--shadow-card);
  display: none;
  z-index: 200;
}

.lang-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.lang-item {
  padding: 0.5rem 0.75rem;
  min-height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.lang-item:hover {
  background: rgba(0, 155, 219, 0.15);
  color: var(--color-cyan);
}

/* Mobile Hamburger Button (3 Lines Icon) */
.mobile-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: rgba(0, 155, 219, 0.15);
  border: 1.5px solid var(--color-cyan);
  border-radius: var(--radius-sm);
  padding: 9px;
  cursor: pointer;
  z-index: 2100;
  flex-shrink: 0;
}

.mobile-hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-cyan);
}

.mobile-hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-cyan);
}

/* Mobile Drawer Overlay Menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 90px);
  background: rgba(4, 7, 17, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 2000;
  overflow-y: auto;
}

.mobile-nav-overlay.show {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.25s ease-out;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(0, 155, 219, 0.18);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  min-height: 46px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: #ffffff;
  color: #040711;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--color-text-primary);
}

.btn-secondary:hover {
  border-color: var(--color-cyan);
  background: rgba(0, 155, 219, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* Hero Section */
.clean-hero {
  padding: 11rem 0 4rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 155, 219, 0.15) 0%, rgba(123, 44, 136, 0.1) 50%, transparent 75%);
  filter: blur(70px);
  pointer-events: none;
}

.clean-hero-box {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.clean-hero-title {
  font-size: clamp(1.65rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.4rem;
  word-break: break-word;
}

.clean-hero-highlight {
  background: var(--grad-hero-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.clean-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 760px;
  margin: 0 auto 2.2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Single Sleek Executive Press Feature Showcase */
.clean-showcase-frame {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
}

.showcase-header-bar {
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.5rem;
}

.showcase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.showcase-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.showcase-content {
  padding: 1.6rem;
  text-align: left;
}

.showcase-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.showcase-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.showcase-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

/* Proof Container */
.proof-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.5rem;
}

.proof-card { text-align: center; }

.proof-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
}

.proof-txt {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Media Section */
.media-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4rem;
}

.media-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.media-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.media-item {
  height: 32px;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.media-item svg { height: 100%; width: auto; max-width: 100%; }

/* Common Sections */
.section { padding: 4rem 0; }

/* Studio Calculator */
.calc-card {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 3rem;
  width: 100%;
}

.calc-header { text-align: center; margin-bottom: 1.8rem; }

.calc-slider-wrap { margin: 1.8rem 0; }

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.calc-slider-val { font-size: 1.8rem; color: var(--color-cyan); font-weight: 800; }

.range-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  accent-color: var(--color-cyan);
  cursor: pointer;
  -webkit-appearance: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-cyan);
  cursor: pointer;
}

.media-addons-bar {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.media-addons-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.addons-flex { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.media-addon-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--color-text-secondary);
  padding: 0.5rem 0.9rem;
  min-height: 40px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.media-addon-chip.active {
  background: rgba(0, 155, 219, 0.15);
  border-color: var(--color-cyan);
  color: #fff;
}

.calc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.metric-lbl { font-size: 0.78rem; color: var(--color-text-secondary); margin-bottom: 0.2rem; }
.metric-val { font-size: 1.2rem; font-weight: 800; color: #fff; }

/* PR Cards */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--color-text-secondary);
  padding: 0.5rem 1.2rem;
  min-height: 40px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.tab-btn.active {
  background: #ffffff;
  color: #040711;
  border-color: #ffffff;
}

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

.pkg-card {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pkg-card.popular {
  border: 1px solid var(--color-cyan);
}

.pop-badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--color-cyan);
  color: #040711;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
}

.pkg-title { font-size: 1.3rem; margin-bottom: 0.2rem; }
.pkg-subtitle { font-size: 0.82rem; color: var(--color-text-secondary); margin-bottom: 1.2rem; }

.pkg-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pkg-price span { font-size: 0.85rem; color: var(--color-text-secondary); font-weight: 400; }

.pkg-list { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  margin-bottom: 0.7rem;
}

.pkg-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Workflow Grid */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.wf-card {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.wf-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 155, 219, 0.15);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.wf-title { font-size: 0.95rem; margin-bottom: 0.3rem; }
.wf-desc { font-size: 0.82rem; color: var(--color-text-secondary); }

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-box {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  padding: 1.1rem 1.3rem;
  min-height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
}

.faq-q:hover { color: var(--color-cyan); }
.faq-icon { font-size: 1.2rem; }
.faq-box.active .faq-icon { transform: rotate(45deg); color: var(--color-cyan); }
.faq-a { padding: 0 1.3rem 1.1rem; color: var(--color-text-secondary); font-size: 0.88rem; display: none; }
.faq-box.active .faq-a { display: block; }

/* Floating WhatsApp Button */
.whatsapp-hub {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 1500;
}

.hub-trigger {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.75rem 1.2rem;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.online-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(4, 7, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.modal-overlay.active { display: flex; animation: fadeIn 0.2s ease-out; }

.modal-card {
  background: #0a1020;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-card);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--color-text-secondary);
  font-size: 1.3rem; cursor: pointer;
  padding: 0.3rem;
}

.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.3rem; color: var(--color-text-primary); }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff; font-family: inherit; font-size: 0.88rem; outline: none;
}

/* Footer */
.footer {
  background: #02040b;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { color: var(--color-text-secondary); font-size: 0.82rem; margin-top: 0.6rem; }
.footer-brand .organico-logo-img { height: 65px; }

.footer-title {
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.8rem;
  text-transform: uppercase; color: var(--color-text-primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--color-text-secondary); text-decoration: none; font-size: 0.82rem; }

.footer-bottom {
  text-align: center; border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem; color: var(--color-text-muted); font-size: 0.78rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}


/* ==========================================================================
   VIP SOCIAL GROWTH PLANS SECTION
   ========================================================================== */
.vip-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.vip-tag-label {
  color: var(--color-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  display: block;
}

.vip-title {
  font-size: 2.2rem;
  margin-top: 0.4rem;
  font-weight: 800;
}

.vip-desc {
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vip-card {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--color-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vip-card.vip-popular {
  border: 1.5px solid var(--color-cyan);
  background: rgba(10, 16, 32, 0.85);
  box-shadow: 0 10px 30px rgba(0, 155, 219, 0.15);
}

.vip-card.vip-popular::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -11px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 155, 219, 0.3);
}

.vip-plan-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.vip-plan-badge.popular-badge {
  background: rgba(0, 155, 219, 0.15);
  border-color: var(--border-cyan);
  color: var(--color-cyan);
}

.vip-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.8rem;
}

.vip-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-right: 0.15rem;
}

.vip-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.vip-period {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-left: 0.4rem;
  font-weight: 500;
}

.vip-card-subtitle {
  font-size: 0.8rem;
  color: var(--color-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.6rem;
}

.vip-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.vip-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--color-text-primary);
}

.vip-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 155, 219, 0.1);
  color: var(--color-cyan);
  flex-shrink: 0;
}

.vip-icon-wrap svg {
  width: 15px;
  height: 15px;
}

.vip-feature-text {
  font-weight: 500;
}

.vip-feature-text span:first-child {
  color: #ffffff;
  font-weight: 700;
}

.vip-btn {
  width: 100%;
}

/* ==========================================================================
   SPOTIFY MUSIC GROWTH SECTION
   ========================================================================== */
#spotify-section {
  position: relative;
  overflow: hidden;
}

.spotify-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.spotify-container-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(4, 7, 17, 0.7);
  border: 1px solid rgba(29, 185, 84, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(29, 185, 84, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
}

.spotify-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1DB954;
  margin-bottom: 1.2rem;
  animation: pulseGreen 3s infinite ease-in-out;
}

.spotify-logo-wrap svg {
  width: 64px;
  height: 64px;
}

.spotify-tag {
  color: #1DB954;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  display: block;
}

.spotify-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #a7f3d0, #1DB954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spotify-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0.8rem auto 3rem;
  line-height: 1.6;
}

.spotify-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: left;
}

.spotify-feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  transition: var(--transition-smooth);
}

.spotify-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(29, 185, 84, 0.04);
  border-color: rgba(29, 185, 84, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.spotify-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(29, 185, 84, 0.1);
  color: #1DB954;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.spotify-feature-icon svg {
  width: 22px;
  height: 22px;
}

.spotify-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.spotify-feature-desc {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.spotify-btn {
  background: #1DB954;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.35);
  padding: 0.9rem 2.5rem;
  font-size: 0.95rem;
}

.spotify-btn:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.5);
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(29, 185, 84, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(29, 185, 84, 0.5)); }
}


/* ==========================================================================
   PRESS OFFICE & SWEEPSTAKES EDUCATIONAL SECTION STYLES
   ========================================================================== */
.pr-office-container {
  margin: 2.5rem 0 3.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pr-office-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.pr-office-h3 {
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 700;
  border-left: 3px solid var(--color-cyan);
  padding-left: 0.8rem;
  line-height: 1.2;
}

.pr-office-p {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pr-office-p:last-of-type {
  margin-bottom: 0;
}

.pr-why-bullets {
  margin-top: 1.8rem;
}

.pr-bullet-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.pr-bullet-item:last-child {
  margin-bottom: 0;
}

.pr-bullet-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(0, 242, 254, 0.2);
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
}

.pr-bullet-text {
  display: flex;
  flex-direction: column;
}

.pr-bullet-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.pr-bullet-desc {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* Sweepstakes Guide Panel */
.sweepstakes-guide-wrap {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 3rem;
}

.sweepstakes-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.sweepstakes-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--color-cyan);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.sweepstakes-intro {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.followers-warning-box {
  display: flex;
  gap: 1rem;
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  margin-top: 1.8rem;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.04);
}

.warning-icon {
  width: 24px;
  height: 24px;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 1px;
}

.warning-text {
  font-size: 0.88rem;
  line-height: 1.5;
}

.warning-title {
  color: #ef4444;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.3rem;
}

.warning-desc {
  color: var(--color-text-secondary);
  margin: 0;
}

.how-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.how-intro {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.how-list {
  padding-left: 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.88rem;
  margin-bottom: 1.8rem;
}

.how-list li {
  margin-bottom: 0.8rem;
  list-style-type: decimal;
}

.how-list li:last-child {
  margin-bottom: 0;
}

.active-promo-box {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, rgba(29, 185, 84, 0.01) 100%);
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.06);
  margin-top: 1.8rem;
}

.promo-label {
  color: #1DB954;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.promo-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.promo-desc {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   UNIVERSAL MOBILE RESPONSIVE MEDIA QUERIES (<= 992px)
   ========================================================================== */

@media (max-width: 992px) {
  .header {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0.6rem 0.85rem;
  }
  
  .nav-menu { display: none; }
  
  /* HIDE desktop header WhatsApp button in mobile to give room for 100% INCREASED LOGO */
  .header-actions .btn-whatsapp { display: none; }
  
  .mobile-hamburger-btn { display: flex; }
  
  /* DOUBLED MOBILE LOGO SIZE (100% INCREASE TO 88px HEIGHT) */
  .organico-logo-img {
    height: 88px;
    width: auto;
    max-width: 200px;
  }

  .mobile-nav-overlay {
    top: 96px;
    height: calc(100vh - 96px);
  }

  .showcase-body { grid-template-columns: 1fr; }
  .showcase-img { height: 200px; }
  
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  
  .spotify-features-grid { grid-template-columns: repeat(2, 1fr); }

  .pr-office-grid, .sweepstakes-guide-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .clean-hero { padding: 8.5rem 0 3rem; }
  .section { padding: 3rem 0; }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
    min-height: 46px;
  }
  
  .calc-card { padding: 1.5rem 1rem; }
  .calc-metrics-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .proof-container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  
  .showcase-content { padding: 1.2rem; }
  .showcase-header-bar { font-size: 0.72rem; padding: 0.6rem 0.9rem; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  
  .whatsapp-hub { right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .hub-trigger { padding: 0.65rem 1rem; font-size: 0.8rem; }

  .spotify-features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .spotify-container-box { padding: 2.2rem 1.5rem; }
  .spotify-title { font-size: 1.8rem; }
  .vip-title { font-size: 1.8rem; }
  .pr-office-container { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.85rem; }
  
  .header { padding: 0.5rem 0.75rem; }
  
  /* DOUBLED MOBILE LOGO ON SMALL SCREENS (80px HEIGHT) */
  .organico-logo-img { height: 80px; max-width: 170px; }
  .lang-btn { padding: 0.35rem 0.6rem; font-size: 0.75rem; min-height: 36px; }

  .mobile-nav-overlay {
    top: 88px;
    height: calc(100vh - 88px);
  }

  .clean-hero-title { font-size: 1.45rem; line-height: 1.2; }
  .clean-hero-subtitle { font-size: 0.88rem; line-height: 1.5; margin-bottom: 1.8rem; }

  .proof-container { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .proof-val { font-size: 1.5rem; }
  .proof-txt { font-size: 0.68rem; }

  .media-flex { gap: 1.2rem; }
  .media-item { height: 24px; }
  
  .calc-slider-val { font-size: 1.5rem; }
  .workflow-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOUNDER & VISION SECTION STYLES
   ========================================================================== */
.founder-card {
  background: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin: 0 auto;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-img-wrap::before {
  content: "";
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  background: var(--grad-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-surface);
  display: block;
}

.founder-info {
  text-align: left;
}

.founder-tag {
  color: var(--color-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.4rem;
}

.founder-name {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.founder-role {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-top: 0.2rem;
  margin-bottom: 1.2rem;
}

.founder-quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
  border-left: 3px solid var(--color-cyan);
  padding-left: 1.2rem;
  margin: 0 0 2rem 0;
}

/* Responsive Overrides for Founder Section */
@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .founder-info {
    text-align: center;
  }
  .founder-quote {
    border-left: none;
    border-top: 2px solid var(--color-cyan);
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .founder-card {
    padding: 2rem 1.5rem;
  }
}

