/* 
  ========================================
  EXPLORING MEDIA LABS - MASTER STYLESHEET
  ========================================
*/

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

:root {
  /* Colors */
  --primary: #0a192f;
  --secondary: #ff7e33;
  --accent: #00d4ff;
  --text-main: #e6f1ff;
  --text-muted: #8892b0;
  --bg-dark: #0a0e14;
  --bg-card: #112240;
  --white: #ffffff;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  --grad-accent: linear-gradient(90deg, #ff7e33 0%, #f97316 100%);
  --grad-text: linear-gradient(90deg, #ff7e33 0%, #ffffff 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL RESETS & TYPOGRAPHY
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

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

.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-exploring {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.logo-media {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-btn {
  background: var(--grad-accent);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary {
  background: var(--grad-accent);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--secondary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 126, 51, 0.1);
}

/* ========================================
   HOME PAGE: HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Simulates a 1200px container for direct flex children */
  padding: 150px calc(50vw - 600px) 100px; 
  overflow: hidden;
  gap: 3rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content, .hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-content {
  padding-left: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 126, 51, 0.1);
  border: 1px solid rgba(255, 126, 51, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO VISUAL (Floating Cards) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding-right: 2rem;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  animation: floating 4s ease-in-out infinite;
  z-index: 3;
  width: 260px;
}

.card-1 { top: 10%; right: 0%; animation-delay: 0s; }
.card-2 { bottom: 15%; left: 0%; animation-delay: 1s; }
.card-3 { top: 40%; left: -10%; animation-delay: 2s; }

.floating-card i {
  font-size: 2rem;
  color: var(--secondary);
}

.card-platform {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.card-stat {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-badge {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-badge.positive {
  color: #22c55e;
}

.main-visual-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
}

.chart-label {
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 1.1rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 150px;
}

.bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 5px 5px 0 0;
  position: relative;
  transition: var(--transition);
}

.bar.active, .bar:hover {
  background: var(--grad-accent);
}

.bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   HOME PAGE: SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  color: var(--icon-color, var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-tags span {
  background: rgba(255, 126, 51, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ========================================
   HOME PAGE: WHY CHOOSE US
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.why-icon {
  color: var(--secondary);
  font-size: 1.5rem;
}

.why-feature h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.why-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.why-card-main {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.platform-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.platform-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-pill.ig { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.platform-pill.fb { background: rgba(24, 119, 242, 0.15); color: #1877f2; }
.platform-pill.yt { background: rgba(255, 0, 0, 0.15); color: #ff0000; }

.why-metrics {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.metric-circle {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.metric-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.metric-name {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.metric-list {
  flex: 1;
}

.metric-row {
  margin-bottom: 1rem;
}

.metric-row span {
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.metric-row span:last-child {
  float: right;
  color: var(--secondary);
  font-weight: 700;
}

.metric-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 10px;
}

/* ========================================
   HOME PAGE: PRICING PREVIEW
   ======================================== */
.pricing-preview {
  background: #0f172a;
}

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

.plan-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid var(--secondary);
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.2rem;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-price.custom-price {
  height: 60px;
  align-items: center;
}

.custom-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.plan-features {
  flex: 1;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.plan-features i {
  color: var(--secondary);
  margin-top: 0.3rem;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.plan-btn:hover {
  background: rgba(255,255,255,0.1);
}

.plan-card.featured .plan-btn {
  background: var(--grad-accent);
  border: none;
  color: var(--white);
}

.plan-card.featured .plan-btn:hover {
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.pricing-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ========================================
   HOME PAGE: CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/services_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 30px;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--secondary);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================================
   INNER PAGES: PAGE HERO (About, Pricing, Contact)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--grad-primary);
  text-align: center;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ABOUT PAGE SPECIFIC
   ======================================== */
.about-story { padding: 100px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 30px;
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  color: var(--primary);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-badge i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.badge-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.s-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}

.s-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vm-section { background: rgba(255,255,255,0.02); }
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.vm-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.featured-vm {
  border-color: var(--secondary);
  transform: scale(1.05);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 126, 51, 0.1);
  color: var(--secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.vm-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.vm-card p { color: var(--text-muted); font-size: 0.95rem; }

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

.do-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.do-item i { color: var(--secondary); font-size: 1.2rem; }
.do-item p { font-weight: 500; margin: 0; }

.terms-card {
  background: var(--bg-card);
  padding: 4rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.terms-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.term-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.term-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,126,51,0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.term-text h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.term-text p { color: var(--text-muted); }

/* ========================================
   PRICING PAGE SPECIFIC
   ======================================== */
.pricing-full-card {
  display: flex;
  background: var(--bg-card);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 4rem;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.featured-pricing {
  border: 2px solid var(--secondary);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--grad-accent);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  z-index: 10;
}

.pricing-left {
  flex: 1;
  padding: 4rem;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.pricing-right {
  flex: 2;
  padding: 4rem;
}

.big-price {
  display: flex;
  align-items: flex-start;
  color: var(--secondary);
  margin: 1rem 0;
}

.big-currency { font-size: 2rem; font-weight: 800; margin-top: 0.5rem; margin-right: 0.2rem; }
.big-amount { font-size: 5rem; font-weight: 900; line-height: 1; }
.big-period { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }

.plan-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.plan-cta-btn {
  display: inline-block;
  text-align: center;
  padding: 1.2rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.plan-cta-btn:hover { background: rgba(255,255,255,0.1); }
.featured-cta { background: var(--grad-accent); border: none; }
.featured-cta:hover { background: var(--grad-accent); transform: translateY(-3px); }

.plan-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-note i { color: var(--secondary); }

.features-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.fg-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.fg-title i { color: var(--secondary); font-size: 1.2rem; }

.fg-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fg-item i { color: #22c55e; margin-top: 0.2rem; font-size: 0.8rem; }

.custom-big { align-items: center; height: 80px; }
.custom-big-text { font-size: 3.5rem; font-weight: 900; line-height: 1; }

.compare-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.compare-table th, .compare-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compare-table th {
  background: rgba(0,0,0,0.2);
  font-size: 1.2rem;
}

.compare-table th span {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 400;
  margin-top: 0.5rem;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--white);
}

.featured-col {
  background: rgba(255, 126, 51, 0.05);
}

.compare-table i.yes { color: #22c55e; font-size: 1.2rem; }
.compare-table i.no { color: #ef4444; font-size: 1.2rem; opacity: 0.5; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 15px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-q i { transition: var(--transition); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); color: var(--secondary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.1);
  border-radius: 0 0 15px 15px;
}

/* ========================================
   CONTACT PAGE SPECIFIC
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.email-icon { background: rgba(0, 212, 255, 0.1); color: #00d4ff; }
.instagram-icon { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
.location-icon { background: rgba(255, 126, 51, 0.1); color: var(--secondary); }

.info-details h4 { margin-bottom: 0.5rem; }
.info-details p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.info-link { color: var(--secondary); font-size: 0.9rem; font-weight: 600; }

.follow-us h4 { margin-bottom: 1.5rem; }
.social-follow-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
}
.ig-btn:hover { background: #e1306c; }
.fb-btn:hover { background: #1877f2; }
.yt-btn:hover { background: #ff0000; }

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.form-header { margin-bottom: 2.5rem; }
.form-tag { color: var(--secondary); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.5rem; display: block; }
.form-header h3 { font-size: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.8rem; font-size: 0.95rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem;
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }

.checkbox-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.95rem; color: var(--text-muted); }

.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 0.5rem; display: none; }

.form-submit-btn {
  width: 100%;
  background: var(--grad-accent);
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.form-submit-btn:hover { box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); transform: translateY(-2px); }

.form-success { text-align: center; padding: 3rem 0; }
.success-icon { font-size: 4rem; color: #22c55e; margin-bottom: 1.5rem; }
.form-success h3 { font-size: 2rem; margin-bottom: 1rem; }
.form-success p { color: var(--text-muted); margin-bottom: 2rem; }

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  margin-bottom: -2.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  color: var(--secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.process-step h4 { font-size: 1.3rem; margin-bottom: 1rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

.process-connector {
  flex: 0.8;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,126,51,0.5), transparent);
  margin-top: 40px;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */
@media (max-width: 1240px) {
  .hero { padding: 150px 2rem 100px; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .hero-card-stack { transform: scale(0.8); }
  
  .pricing-full-card { flex-direction: column; }
  .pricing-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  
  .process-steps { flex-direction: column; gap: 4rem; }
  .process-connector { display: none; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active { transform: translateY(0); opacity: 1; }
  
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { padding-left: 0; width: 100%; }
  .hero-visual { width: 100%; padding: 0; min-height: 500px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .card-1 { right: auto; left: 10%; }
  .card-3 { left: auto; right: 10%; }
  
  .story-grid, .vm-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  
  .features-detailed, .info-cards, .form-row { grid-template-columns: 1fr; }
  
  .pricing-left, .pricing-right, .contact-form-wrapper, .terms-card { padding: 2rem; }
  .big-amount { font-size: 3.5rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-card-stack { transform: scale(0.6); }
  .main-visual-card { width: 100%; }
  .floating-card { display: none; } /* Hide floating cards on very small screens for clarity */
}
