* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0f1a;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: color .3s;
}

a:hover { color: #60a5fa; }

.accent { color: #3b82f6; }

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

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,130,246,.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.logo span { color: #3b82f6; }

.nav { display: flex; gap: 32px; }

.nav a {
  color: #9ca3af;
  font-size: .875rem;
  font-weight: 500;
  transition: color .3s;
}

.nav a:hover { color: #3b82f6; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
}

.lang-switch a {
  color: #6b7280;
  transition: color .2s;
}

.lang-switch a.active {
  color: #3b82f6;
}

.lang-switch a:hover {
  color: #3b82f6;
}

.lang-switch span {
  color: #4b5563;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,.3);
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-outline:hover {
  background: rgba(59,130,246,.1);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

.btn-outline-light:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(59,130,246,.08), transparent),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(59,130,246,.05), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 100px;
  font-size: .8rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}

.hero h1 span { color: #3b82f6; }

.hero p {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-placeholder {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(59,130,246,.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(59,130,246,.1), transparent 50%);
  border: 1px solid rgba(59,130,246,.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-placeholder::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,.1);
}

.globe-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  border: 1px solid rgba(59,130,246,.1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.08); opacity: .05; }
}

.globe-icon {
  font-size: 6rem;
  opacity: .3;
  color: #3b82f6;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, #111827, #0f1422);
  border-top: 1px solid rgba(59,130,246,.1);
  border-bottom: 1px solid rgba(59,130,246,.1);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .9rem;
  color: #6b7280;
  font-weight: 500;
}

/* ---- SECTION TITLES ---- */
.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59,130,246,.1);
  border-radius: 100px;
  font-size: .8rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
}

/* ---- SOLUTIONS ---- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  padding: 32px;
  transition: all .4s;
  cursor: default;
}

.solution-card:hover {
  border-color: rgba(59,130,246,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,246,.08);
}

.solution-icon {
  width: 52px;
  height: 52px;
  background: rgba(59,130,246,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ---- DIFFERENTIATORS ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.diff-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all .4s;
}

.diff-card:hover {
  border-color: rgba(59,130,246,.2);
  transform: translateY(-2px);
}

.diff-card .num {
  font-size: .8rem;
  color: #3b82f6;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: .05em;
}

.diff-card h3 {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.diff-card p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ---- CASE STUDIES ---- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s;
}

.case-card:hover {
  border-color: rgba(59,130,246,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,246,.06);
}

.case-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(59,130,246,.1), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(59,130,246,.3);
}

.case-body {
  padding: 28px;
}

.case-body h3 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.case-body p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-link {
  font-size: .85rem;
  font-weight: 600;
  color: #3b82f6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: linear-gradient(135deg, #111827, #0a0e1a);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: linear-gradient(135deg, #1a1f2e, #111827);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: rgba(59,130,246,.15);
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: .95rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59,130,246,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3b82f6;
  font-size: .9rem;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}

.testimonial-role {
  font-size: .8rem;
  color: #6b7280;
}

/* ---- NEWS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.news-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s;
}

.news-card:hover {
  border-color: rgba(59,130,246,.2);
  transform: translateY(-4px);
}

.news-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(59,130,246,.08), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(59,130,246,.2);
}

.news-body {
  padding: 24px;
}

.news-date {
  font-size: .75rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-body p {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: linear-gradient(135deg, #111827, #0a0e1a);
  border-top: 1px solid rgba(59,130,246,.1);
  border-bottom: 1px solid rgba(59,130,246,.1);
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter p {
  color: #6b7280;
  font-size: .9rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  min-width: 420px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
}

.newsletter-form input:focus {
  border-color: #3b82f6;
}

.newsletter-form input::placeholder { color: #4b5563; }

/* ---- FOOTER ---- */
.footer {
  background: #060a16;
  border-top: 1px solid rgba(59,130,246,.06);
  padding: 64px 0 32px;
}

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

.footer-brand .logo { margin-bottom: 16px; display: inline-block; }

.footer-brand p {
  font-size: .85rem;
  color: #6b7280;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: .85rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: .85rem;
  color: #6b7280;
  transition: color .3s;
}

.footer-col ul li a:hover { color: #3b82f6; }

.footer-col .contact-item {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.footer-col .contact-item strong {
  color: #9ca3af;
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: .8rem;
  color: #4b5563;
}

.footer-socials { display: flex; gap: 16px; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all .3s;
  font-size: .85rem;
}

.footer-socials a:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59,130,246,.1);
}

/* ---- MOBILE TOGGLE ---- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .nav { gap: 20px; }
  .newsletter-wrap { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: unset; width: 100%; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(59,130,246,.1);
  }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }
  .header-actions .btn { padding: 10px 18px; font-size: .8rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 40px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .globe-placeholder { width: 260px; height: 260px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- DROPDOWN ---- */
.nav-item { position: relative; }

.drop-trigger { cursor: pointer; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .3s, opacity .3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: .85rem;
  color: #9ca3af;
  white-space: nowrap;
  transition: color .2s, background .2s;
}

.dropdown-menu a:hover { color: #3b82f6; background: rgba(59,130,246,.05); }

/* Desktop: hover reveal ONLY */
@media (min-width: 769px) {
  .dropdown { padding-bottom: 20px; margin-bottom: -12px; }
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile: click reveal via .open class, nav is already toggled via .nav.open */
@media (max-width: 768px) {
  .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    transition: none;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 0;
    min-width: unset;
  }
  .dropdown.open > .dropdown-menu { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; min-width: unset; }
  .drop-trigger { width: 100%; }
  .nav-item { width: 100%; }
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-width: 340px;
}

.drop-col { display: flex; flex-direction: column; }

.drop-col a { white-space: nowrap; }

/* ---- PAGE HERO (inner) ---- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(59,130,246,.05), transparent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 30%, rgba(59,130,246,.06), transparent);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .section-tag { margin-bottom: 20px; }

/* ----- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: .85rem;
  color: #6b7280;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: #3b82f6; }
.breadcrumb span { color: #3b82f6; }

/* ---- CONTENT SECTIONS ---- */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.content-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-text p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #9ca3af;
  font-size: .95rem;
}

.content-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.content-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-placeholder {
  width: 100%;
  max-width: 480px;
  height: 360px;
  background: linear-gradient(135deg, rgba(59,130,246,.06), rgba(59,130,246,.02));
  border: 1px solid rgba(59,130,246,.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(59,130,246,.2);
}

.features-list {
  margin-top: 60px;
}

.features-list h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

/* ---- FAQ ---- */
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
  transition: background .3s;
  user-select: none;
}

.faq-q:hover { background: rgba(59,130,246,.04); }

.faq-q .arrow {
  font-size: .8rem;
  color: #3b82f6;
  transition: transform .3s;
}

.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ---- CONTACT FORM ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(59,130,246,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: .85rem;
  color: #9ca3af;
  font-weight: 400;
  margin-bottom: 4px;
}

.contact-info-item strong {
  color: #fff;
  font-weight: 600;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
  font-family: inherit;
}

.form-control:focus { border-color: #3b82f6; }

.form-control::placeholder { color: #4b5563; }

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

/* ---- LOGIN ---- */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
}

.login-box {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.12);
  border-radius: 20px;
  padding: 48px 36px;
}

.login-box .logo {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.login-box p.sub {
  text-align: center;
  color: #6b7280;
  font-size: .9rem;
  margin-bottom: 32px;
}

.login-box .form-group { margin-bottom: 20px; }

.login-box .form-group label { font-size: .8rem; }

.login-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: .85rem;
}

.login-extra label { display: flex; align-items: center; gap: 8px; color: #6b7280; cursor: pointer; }

.login-extra a { color: #3b82f6; font-size: .85rem; }

.login-box .btn { width: 100%; justify-content: center; }

.login-divider {
  text-align: center;
  color: #4b5563;
  font-size: .85rem;
  margin: 24px 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,.06);
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.login-links { text-align: center; margin-top: 24px; font-size: .85rem; color: #6b7280; }

.login-links a { color: #3b82f6; font-weight: 600; }

/* ---- EMPLEOS ---- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.job-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 14px;
  padding: 28px;
  transition: all .4s;
}

.job-card:hover {
  border-color: rgba(59,130,246,.2);
  transform: translateY(-2px);
}

.job-card .tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59,130,246,.1);
  border-radius: 100px;
  font-size: .75rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 12px;
}

.job-card h3 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-card .location {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.job-card .desc {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---- CASOS LIST ---- */
.casos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ---- BLOG POST ---- */
.post-content {
  max-width: 780px;
  margin: 0 auto;
}

.post-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 48px 0 16px;
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 12px;
}

.post-content p {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.9;
  margin-bottom: 20px;
}

.post-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.post-content ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #9ca3af;
}

.post-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
}

.post-meta {
  display: flex;
  gap: 24px;
  color: #6b7280;
  font-size: .85rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.post-meta strong { color: #9ca3af; }

.post-img-lg {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(59,130,246,.08), transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(59,130,246,.15);
  margin-bottom: 40px;
}

/* ---- MAPA ---- */
.map-container {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #111827, #0a0e1a);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(59,130,246,.04), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(59,130,246,.03), transparent 30%);
}

.map-placeholder {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-placeholder .icon { font-size: 5rem; opacity: .15; }
.map-placeholder p { color: #4b5563; font-size: .9rem; margin-top: 12px; }

.map-pops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pop-card {
  background: #111827;
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.pop-card .count {
  font-size: 1.3rem;
  font-weight: 800;
  color: #3b82f6;
}

.pop-card .label {
  font-size: .8rem;
  color: #6b7280;
  margin-top: 4px;
}

/* ---- RESPONSIVE UPDATES ---- */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 100px 0 60px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .casos-list { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .map-pops { grid-template-columns: repeat(2, 1fr); }
  .login-box { padding: 36px 24px; }
  .post-img-lg { height: 240px; }
}

/* ---- REMOTE PEERING ---- */
.rp-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(59,130,246,.08), transparent);
  position: relative;
  overflow: hidden;
}

.rp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 30% 60%, rgba(59,130,246,.06), transparent);
  pointer-events: none;
}

.rp-hero .container { position: relative; z-index: 1; }

.rp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rp-benefit-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  padding: 32px;
  transition: all .4s;
}

.rp-benefit-card:hover {
  border-color: rgba(59,130,246,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,246,.08);
}

.rp-benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(59,130,246,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.rp-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.rp-benefit-card p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
}

.rp-how-works {
  background: linear-gradient(135deg, #111827, #0a0e1a);
  border-top: 1px solid rgba(59,130,246,.08);
  border-bottom: 1px solid rgba(59,130,246,.08);
}

.rp-diagram {
  background: linear-gradient(135deg, rgba(59,130,246,.05), transparent);
  border: 1px solid rgba(59,130,246,.1);
  border-radius: 20px;
  padding: 48px;
  margin-top: 48px;
  text-align: center;
}

.rp-diagram-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.rp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rp-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 180px;
}

.rp-flow-icon {
  width: 80px;
  height: 80px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.rp-flow-step span {
  font-size: .85rem;
  color: #9ca3af;
  text-align: center;
}

.rp-flow-arrow {
  font-size: 2rem;
  color: rgba(59,130,246,.4);
}

.rp-ix-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.rp-ix-card {
  background: #111827;
  border: 1px solid rgba(59,130,246,.06);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: all .3s;
  font-size: .75rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.rp-ix-card:hover {
  border-color: rgba(59,130,246,.2);
  color: #3b82f6;
  transform: translateY(-2px);
}

.rp-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rp-usecase-card {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all .4s;
}

.rp-usecase-card:hover {
  border-color: rgba(59,130,246,.2);
  transform: translateY(-4px);
}

.rp-usecase-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.rp-usecase-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.rp-usecase-card p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
}

.rp-usecase-card .tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59,130,246,.1);
  border-radius: 100px;
  font-size: .75rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 16px;
}

.rp-casestudy {
  background: linear-gradient(135deg, #111827, #0f1422);
  border: 1px solid rgba(59,130,246,.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rp-casestudy-content {
  padding: 48px;
}

.rp-casestudy-content .tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59,130,246,.1);
  border-radius: 100px;
  font-size: .75rem;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.rp-casestudy-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.rp-casestudy-content blockquote {
  font-size: .95rem;
  color: #9ca3af;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid rgba(59,130,246,.3);
}

.rp-casestudy-content .author {
  font-size: .85rem;
  color: #6b7280;
}

.rp-casestudy-content .author strong {
  color: #e5e7eb;
  display: block;
  margin-bottom: 4px;
}

.rp-casestudy-visual {
  background: linear-gradient(135deg, rgba(59,130,246,.08), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: .3;
}

.rp-faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}

.rp-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(59,130,246,.05), transparent);
}

.rp-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.rp-cta p {
  color: #6b7280;
  margin-bottom: 32px;
}

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

@media (max-width: 768px) {
  .rp-ix-grid { grid-template-columns: repeat(3, 1fr); }
  .rp-benefits-grid { grid-template-columns: 1fr; }
  .rp-usecases-grid { grid-template-columns: 1fr; }
  .rp-casestudy { grid-template-columns: 1fr; }
  .rp-casestudy-visual { display: none; }
  .rp-flow { flex-direction: column; }
  .rp-flow-arrow { transform: rotate(90deg); }
  .rp-diagram { padding: 32px 24px; }
}
