/* ========================================
   V4M — Global Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

::selection {
  background: #ffc006;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffc006;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.text-yellow { color: #ffc006; }
.text-muted { color: rgba(255, 255, 255, 0.5); }

/* ========== LABELS & BADGES ========== */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffc006;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: #ffc006;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #ffc006;
  color: #000000;
}
.btn-primary:hover {
  background: #c8e600;
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(215, 255, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ========== CARDS ========== */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(215, 255, 0, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 255, 0, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.card:hover .card-icon {
  background: rgba(215, 255, 0, 0.2);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: #ffc006;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* ========== SECTIONS ========== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  max-width: 560px;
  margin: 16px auto 0;
}

/* ========== GRID SYSTEM ========== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #ffc006;
}
.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.2);
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* ========== DIVIDER ========== */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
}

/* ========== LIST ========== */
.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.list-item .check {
  width: 20px;
  height: 20px;
  background: rgba(215, 255, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-item .check svg {
  width: 12px;
  height: 12px;
  color: #ffc006;
}

/* ========== FAQ ========== */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(215, 255, 0, 0.2);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #ffc006;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-content.show {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  padding-left: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ========== CONTACT INFO ========== */
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(215, 255, 0, 0.3);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 255, 0, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #ffc006;
}

/* ========== FORM ========== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ffc006;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== MAP PLACEHOLDER ========== */
.map-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ========== PLAN CARD ========== */
.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.featured {
  background: rgba(215, 255, 0, 0.05);
  border: 2px solid rgba(215, 255, 0, 0.3);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc006;
  color: #000000;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 24px 0 8px;
}
.plan-price.text-yellow {
  color: #ffc006;
}

.plan-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

/* ========== STEPS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: rgba(215, 255, 0, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffc006;
  transition: background 0.3s ease;
}
.step:hover .step-number {
  background: rgba(215, 255, 0, 0.2);
}

.step h4 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== SOCIAL LINKS ========== */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: rgba(215, 255, 0, 0.3);
  background: rgba(215, 255, 0, 0.1);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PAGE TRANSITION ========== */
#app {
  opacity: 1;
  transition: opacity 0.2s ease;
}
#app.fade-out {
  opacity: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .page-hero {
    padding: 120px 0 60px;
  }
  .card {
    padding: 24px;
  }
  .plan-card {
    padding: 32px 24px;
  }
  .cta-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .page-hero {
    padding: 100px 0 40px;
  }
  .card {
    padding: 20px;
    border-radius: 16px;
  }
  .plan-card {
    padding: 24px 16px;
  }
  .cta-section {
    padding: 48px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #ffc006;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffc006;
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-btn .bar {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffc006;
}

.mobile-cta {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
}

/* ========================================
   FOOTER
   ======================================== */
#footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-slogan {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #ffc006;
}

.footer-contact li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.mt-16 { margin-top: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .nav-container {
    padding: 12px 16px;
  }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
#whatsapp-placeholder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

#whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
}
#whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   CLIENT AREA NAVBAR
   ======================================== */
.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-user-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .nav-user {
    display: none;
  }
}

/* ========================================
   HERO SECTION (Redesigned)
   ======================================== */
.hero-section {
  position: relative;
  padding: 180px 0 140px;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg-wireframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.hero-bg-wireframe svg {
  width: 100%;
  height: 100%;
}

.hero-diagonal-cut {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000000;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 3;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 140px 0 100px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 110px 0 80px;
  }
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 192, 6, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-icon-wrapper {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 480px) {
  .about-bg-map {
    width: 300px;
    height: 300px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  border-color: rgba(255, 192, 6, 0.2);
  background: rgba(255, 192, 6, 0.03);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 192, 6, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  color: #ffc006;
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.steps-bg-wireframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.steps-bg-wireframe svg {
  width: 100%;
  height: 100%;
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card:hover {
  border-color: rgba(255, 192, 6, 0.3);
  transform: translateY(-4px);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc006, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 192, 6, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .step-card-number {
    font-size: 2rem;
  }
  .step-card {
    padding: 24px 16px;
  }
  .about-icon-wrapper {
    width: 140px;
    height: 140px;
  }
  .advantage-card {
    padding: 24px 16px;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
}

/* ========================================
   PLANS SECTION
   ======================================== */
.plans-section {
  position: relative;
  overflow: hidden;
}

.plans-bg-mountain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400"><defs><linearGradient id="g" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23333;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%23000;stop-opacity:0"/></linearGradient></defs><path fill="url(%23g)" d="M0,400 L0,250 Q180,180 360,220 T720,200 T1080,240 T1440,200 L1440,400 Z"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.plans-diagonal-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.01);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 1;
}

.plans-diagonal-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.01);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.plan-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 9999px;
}

.plan-btn {
  width: 100%;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  color: #ffc006;
  flex-shrink: 0;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages-section {
  background: rgba(255, 255, 255, 0.01);
}

.advantage-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: rgba(255, 192, 6, 0.2);
  background: rgba(255, 192, 6, 0.03);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 192, 6, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  background: rgba(255, 192, 6, 0.2);
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: #ffc006;
}

/* ========================================
   CTA SECTION (Contact Form)
   ======================================== */
.cta-section-alt {
  position: relative;
  overflow: hidden;
}

.cta-bg-wireframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.cta-bg-wireframe svg {
  width: 100%;
  height: 100%;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}
