/* TECHNO FUSION - SHARED STYLES */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --bg-soft: #11121A;
  --bg-card: #181926;
  --bg-elevated: #1F2030;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #F5F5F7;
  --text-dim: rgba(245, 245, 247, 0.7);
  --text-faint: rgba(245, 245, 247, 0.45);
  --accent: #FF5B2E;
  --accent-bright: #FF7E4E;
  --accent-glow: rgba(255, 91, 46, 0.4);
  --electric: #00E5FF;
  --electric-glow: rgba(0, 229, 255, 0.4);
  --violet: #A855F7;
  --lime: #A3E635;
  --display: 'Syne', sans-serif;
  --sans: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(255, 91, 46, 0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(0, 229, 255, 0.08), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; overflow: visible; }
.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--text);
  background: var(--bg-elevated);
}
.nav-links a.active { color: var(--accent); }
.nav-links a.nav-cta {
  margin-left: 10px;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
}
.nav-links a.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-links a.nav-cta span { position: relative; z-index: 1; }
.nav-links a.nav-cta:hover::before { opacity: 1; }
.nav-links a.nav-cta:hover {
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 99;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--accent);
  background: var(--bg-card);
}
.mobile-menu .nav-cta {
  margin-top: 16px;
  background: var(--accent);
  color: white !important;
  text-align: center;
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--text-dim);
}
.btn-arrow { display: inline-flex; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* TYPE */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stroke-word {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-deco {
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: 0.3;
  pointer-events: none;
  animation: orbit 80s linear infinite;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.page-hero .lead {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 64ch;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.breadcrumb a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* CONTENT BLOCK */
.content-block {
  max-width: 800px;
  padding: 100px 0;
}
.content-block h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  margin-top: 60px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  color: var(--accent-bright);
}
.content-block p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.content-block p strong { color: var(--text); font-weight: 600; }
.content-block ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.content-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--accent);
}

.highlight-box {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.highlight-box p {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.highlight-box p em {
  color: var(--accent);
  font-style: italic;
}

/* VALUE CARDS */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.value-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.value-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--bg-elevated); color: var(--text); }
.modal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.modal p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 28px;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  cursor: pointer;
}
.modal-option:hover { transform: translateX(4px); }
.modal-option[data-type="whatsapp"]:hover { border-color: #25D366; }
.modal-option[data-type="call"]:hover { border-color: var(--accent); }
.modal-option-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-option[data-type="whatsapp"] .modal-option-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}
.modal-option[data-type="call"] .modal-option-icon {
  background: rgba(255, 91, 46, 0.15);
  color: var(--accent);
}
.modal-option-text { flex: 1; }
.modal-option-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.modal-option-desc { font-size: 13px; color: var(--text-dim); }
.modal-option-arrow { color: var(--text-faint); transition: all 0.2s; }
.modal-option:hover .modal-option-arrow { color: var(--text); transform: translateX(4px); }

/* FOOTER */
footer {
  padding: 100px 0 40px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  position: relative;
  margin-top: 60px;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand span {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tag {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 32ch;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dim);
  transition: all 0.25s;
  text-decoration: none;
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 91, 46, 0.1);
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--accent); }

.contact-block {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}
.contact-block strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.contact-block strong:first-child { margin-top: 0; }
.contact-block a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-block a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom > div { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--accent); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.22s; }
.reveal-3 { transition-delay: 0.36s; }
.reveal-4 { transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  nav { padding: 14px 20px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .logo-text { font-size: 18px; }
  .mobile-menu { top: 68px; }
  .page-hero { padding: 140px 0 60px; }
  .content-block { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal { padding: 28px 24px; }
}
